check if current class doesn't have access to siblings (IDEA-19200)

This commit is contained in:
anna
2013-05-03 17:21:31 +02:00
parent e9e7ce005d
commit ee964486c9
3 changed files with 13 additions and 1 deletions
@@ -0,0 +1,8 @@
class Test {
class Test1 extends Test {}
static class Test2 extends <error descr="No enclosing instance of type 'Test' is in scope">Test1</error> {}
static class Test11 extends Test {}
static class Test21 extends Test11 {}
}