OSDN Git Service

* g++.dg/cpp/_Pragma1.C: Disable on AIX.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / attrib28.C
1 // PR c++/28558
2 // { dg-options "" }
3
4 struct A
5 {
6   A(int) { }
7 };
8
9 int main()
10 {
11   A a = (A __attribute__((unused)))0; // { dg-warning "attribute" }
12 }