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