no enclosing instance: sibling static nested class should be also be checked (IDEA-105004)

This commit is contained in:
anna
2013-04-11 17:02:09 +02:00
parent 38d197e704
commit b4c0420a4d
2 changed files with 6 additions and 1 deletions
@@ -95,3 +95,8 @@ public class A42 {
class D42 extends A42.B {
D42() {new A42().super();}
}
class IDEA105004 {
class A {}
static class B extends <error descr="No enclosing instance of type 'IDEA105004' is in scope">A</error> {}
}