blob: 098312d3eca3a4543b4183c38e8049de54bb817f [file] [log] [blame]
public class Foo {
Foo getAnotherFoo() {}
static void tryMakeMeStatic(Foo anObject, boolean b) {
if (b) {
Foo.tryMakeMeStatic(anObject.getAnotherFoo(), !b);
}
}
}