1 /* Test non-zero initializers in .bss-like sections get properly refused.  */
2 /* { dg-do compile } */
3 /* { dg-require-named-sections "" } */
4 
5 int __attribute__((section(".bss.local"))) x = 1; /* { dg-error "" "zero init" } */
6 int *__attribute__((section(".bss.local"))) px = &x; /* { dg-error "" "zero init" } */
7 int __attribute__((section(".bss.local"))) y = 0;
8 int *__attribute__((section(".bss.local"))) py = (void*)0;
9