class Test { void foo() { bar(); if (false) { foo(); } } void bar(){ baz(); if (false) { bar(); } } void baz(){} }