blob: 981ca73edf32a644d8c5195002745e42e46f9cdf [file] [log] [blame]
class Test {
static boolean isA() {
return true;
}
static boolean isB() {
return true;
}
private static void foo(final boolean explicit) {
if (explicit ? isA() : isB()) {
}
}
}