mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
don't highlight part of poly conditional expression when it's type is not defined, would be highlighted on top level (IDEA-171431)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
|
||||
class Test{
|
||||
void test() {
|
||||
B b = new B<error descr="'B(java.lang.String, java.lang.String)' in 'Test.B' cannot be applied to '(?)'">(true == false ? "bar" : null)</error>;
|
||||
}
|
||||
|
||||
class B {
|
||||
B(String c, String d ) {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user