blob: b1d7b12d1b4cca007b729af5d919c7ceeee23adc [file] [log] [blame]
package f3;
public class X {
void foo() {
new X() {
};
new X() {
void foobar() {
bar();
}
};
if (true) {
class Y {
}
} else {
class Y {
void foobar() {
bar();
}
}
}
}
void bar() {
}
}