mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
resolve references by qualified class name when qualifiers can't be resolved
javac ignores problems caused by files located in wrong directories, IDEA reports them: try to search class by FQName when failed to resolve normally (IDEA-178376; IDEA-176179)
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
package xxxy.yy;
|
||||
|
||||
class MyTest {
|
||||
|
||||
{
|
||||
xxxy.yy.MyTest.I o;
|
||||
I i = new xxxy.yy.MyTest.I() {
|
||||
@Override
|
||||
public void foo() {
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
interface I {
|
||||
void foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user