1 /* PR middle-end/67330 */
2 /* { dg-do compile } */
3 /* { dg-require-weak "" } */
4 
5 void
f(void)6 f (void)
7 {
8   __attribute__ ((weak)) int a; /* { dg-error "weak declaration of .a. must be public" } */
9 }
10