Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
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
();