repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
ctor-dtor-privacy-1.C
blob
3e84c092168591da201aeec47fac7c8eec8237e9
1
// { dg-options "-Wctor-dtor-privacy" }
2
3
struct C { // { dg-warning "" }
4
static bool result;
5
private:
6
static bool check();
7
};
8
9
bool C::result = check();