mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
shrink operator applicability highlighting
GitOrigin-RevId: 241ea28f87e758dc939fcdc496e810cc054480df
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e2dde5db5c
commit
aaf3c99ae8
+3
-3
@@ -24,10 +24,10 @@ public class a {
|
||||
i = <error descr="Operator '||' cannot be applied to 'double', 'long'">3.8 || 2L</error>;
|
||||
i = <error descr="Operator '||' cannot be applied to 'null', 'java.lang.Object'">null || o</error>;
|
||||
|
||||
<error descr="Operator '|' cannot be applied to 'int', 'null'">i |= null</error>;
|
||||
i <error descr="Operator '|' cannot be applied to 'int', 'null'">|=</error> null;
|
||||
double d = 0;
|
||||
<error descr="Operator '&' cannot be applied to 'double', 'int'">d &= i</error>;
|
||||
<error descr="Operator '/' cannot be applied to 'java.lang.Object', 'int'">o /= 3</error>;
|
||||
d <error descr="Operator '&' cannot be applied to 'double', 'int'">&=</error> i;
|
||||
o <error descr="Operator '/' cannot be applied to 'java.lang.Object', 'int'">/=</error> 3;
|
||||
|
||||
|
||||
String sss2 = <error descr="Operator '+' cannot be applied to 'java.lang.String', 'void'">"" + fvoid()</error>;
|
||||
|
||||
Reference in New Issue
Block a user