blob: cb67f11e67d433dd4d069b2c76a250c2e433bcae [file] [log] [blame]
/* APPLE LOCAL file 6052773 */
/* { dg-do compile } */
/* { dg-options "" } */
struct pthread_once_t { };
struct test {
pthread_once_t once;
};
int main(void) {
struct test foo = {
once: PTHREAD_ONCE_INITIALIZER /* { dg-error "not declared in this scope" } */
};
return 0;
}