Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
access10.C
blob: a8a2bb9fd42488a879abbae8ac32b52866cd3efb [
file
] [
log
] [
blame
]
// { dg-do assemble }
// PRMS Id: 4839
// Bug: The initializer of a static member of a class has the same acess
// rights as a member function. g++ doesn't realize that.
class
X
{
X
(
int
);
static
X foo
;
public
:
void
dummy
();
};
X X
::
foo
=
9
;