blob: 82b6b90af953f97f5ccf049cd1f01970e0a82b12 [file] [log] [blame]
// "Simplify boolean expression" "true"
class X {
void f() {
int i = !(!false && true) || <caret>(true ? true & true : !!false | false) || this == null ? 0 : 1;
}
}