aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/crash44.C
blob: 41947b7d14faf44f59f1df5202060c4de35aa818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/37260
// { dg-options "" }

struct pthread_once_t { };
struct test {
  pthread_once_t once;
};

int main(void) {
  struct test foo = {
    once: PTHREAD_ONCE_INITIALIZER // { dg-error "'PTHREAD_ONCE_INITIALIZER' was not declared in this scope" }
  };

  return 0;
}