Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
ctor-dtor-privacy-1.C
blob: 3e84c092168591da201aeec47fac7c8eec8237e9 [
file
] [
log
] [
blame
]
// { dg-options "-Wctor-dtor-privacy" }
struct
C
{
// { dg-warning "" }
static
bool
result
;
private
:
static
bool
check
();
};
bool
C
::
result
=
check
();