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(); }