repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
crash44.C
blob
41947b7d14faf44f59f1df5202060c4de35aa818
1
// PR c++/37260
2
// { dg-options "" }
3
4
struct pthread_once_t { };
5
struct test {
6
pthread_once_t once;
7
};
8
9
int main(void) {
10
struct test foo = {
11
once: PTHREAD_ONCE_INITIALIZER // { dg-error "'PTHREAD_ONCE_INITIALIZER' was not declared in this scope" }
12
};
13
14
return 0;
15
}