1interface A extends X.A {
2
3	default void foo() {
4		X.A xa = null;
5		xa.bar();
6	}
7}
8
9interface X {
10	interface A {
11		void bar();
12	}
13}
14