Can anybody justify IntelliJ (Android Studio) deci...
# announcements
a
Can anybody justify IntelliJ (Android Studio) decision of translating this Java code:
Copy code
boolean foo = false || true;
foo |= false;
to this Kotlin code:
Copy code
var foo = false || true
foo = foo or false