blob: 674db9265a0907e7d529f53c0e41ff6cb8c72694 [file] [log] [blame]
public class Test {
boolean A, B, C;
boolean f() {
if (A) if (B) return true;
if (C) return true;
return false;
}
}