1 // { dg-do compile { target c++11 } }
6 auto a = new int [n] [[gnu::deprecated]]; // { dg-warning "attributes ignored on outermost array type in new expression" }
7 auto b = new int [n] [[gnu::deprecated]] [42] [[]] [1] [[]]; // { dg-warning "attributes ignored on outermost array type in new expression" }
8 auto c = new int [n] [[]] [42] [[gnu::deprecated]] [1] [[gnu::deprecated]];