mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
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)
17 lines
239 B
Java
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();
|
|
}
|
|
} |