blob: 956acfcf0bb9255fadfae13cd9c1ad75c4249664 [file] [log] [blame]
class A extends X.Y {
void foo() {
X.Y xy = null;
xy.bar();
}
}
class X {
static class Y {
void bar() {}
}
}