Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/genericsHighlighting/ClassInWrongPackage.java
Anna Kozlova 955a6160cd 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)
2017-09-06 19:42:00 +03:00

17 lines
239 B
Java

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();
}
}