class AssertFalse { void bar() { final boolean b = call(); if (Assertions.assertFalse(b)) { if(b) {} } } boolean call() {return true;} }