blob: a95a2cd94324e330472a487f68acafa569cb3d6f [file] [log] [blame]
class Test {
static boolean isA() {
return true;
}
static boolean isB() {
return true;
}
private static void foo(final boolean explicit) {
final boolean has = explicit ? isA() : isB();
if (ha<caret>s) {
}
}
}