No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / ext / visibility / visibility-7.C
blobae4589397b6121fa392ba9cebe530af23542dfcd
1 /* Test warning from conflicting visibility specifications. */
2 /* { dg-require-visibility "protected" } */
3 /* { dg-final { scan-hidden "xyzzy" } } */
5 extern int 
6 __attribute__((visibility ("hidden")))
7 xyzzy; /* { dg-warning "previous declaration here" "" } */
9 int 
10 __attribute__((visibility ("protected")))
11 xyzzy = 5; /* { dg-warning "visibility attribute ignored" "" } */