blob: 50521f8e8e83445227f98ec7605cfba85668a3a3 [file] [log] [blame]
// "Simplify boolean expression" "true"
class X {
void f(boolean b, boolean c) {
if (b && c) return;
}
}