Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20090315_1.C
blob: 0a2fba552a611ebbaa9a6b6c35159bec1aece531 [
file
] [
log
] [
blame
]
struct
Foo
{
bool
Mumble
()
{
return
true
;
}
static
void
Bar
()
{
if
(
foo_
->
Mumble
())
foo_
=
0
;
}
static
void
Baz
()
{
Bar
();
}
static
Foo
*
foo_
;
};
void
Unused
()
{
Foo
::
Bar
();
Foo
::
Baz
();
}