mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
check that new expression reference resolves to class (IDEA-36082; IDEA-72934)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class Test {
|
||||
void foo(Object obj) {
|
||||
new <error descr="Cannot find symbol obj">obj</error>();
|
||||
new <error descr="Cannot find symbol java">java</error>();
|
||||
new java.lang.Object();
|
||||
new Object();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user