OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[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 }