mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
SimplifyBooleanExpression: Fix negation generation for xor case
GitOrigin-RevId: a6072460618ac0a7c6c29f0ad61c0bdde4d52318
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f3a71cda8a
commit
a939a18e23
@@ -0,0 +1,6 @@
|
||||
// "Simplify boolean expression" "true"
|
||||
class A {
|
||||
void foo(int x) {
|
||||
boolean a = x <= 5;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Simplify boolean expression" "true"
|
||||
class A {
|
||||
void foo(int x) {
|
||||
boolean a = true<caret> ^ x > 5;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user