IDEA-91596 (test case)

This commit is contained in:
Roman Shevchenko
2013-03-19 20:51:57 +01:00
parent dc02052ec9
commit 4db079dbbe
4 changed files with 22 additions and 0 deletions
@@ -0,0 +1,3 @@
package pkg.sub;
public class Sub1 { }
@@ -0,0 +1,3 @@
package pkg.sub;
public class Sub2 { }
@@ -0,0 +1,11 @@
package test;
class Test {
void test() {
pkg s0;
pkg.<error descr="Cannot resolve symbol 'Sub1'">Sub1</error> s1;
pkg.sub.<error descr="Cannot resolve symbol 'Sub2'">Sub2</error> s2;
}
public static class pkg { } // an unfortunate name
}