1 class Y extends X {
Y()2     public Y() {
3     }
4 
bar()5     int bar() {
6         return 1;
7     }
8 }
9