blob: 87f1a25eabef9084d466282a6d5625a971b619c3 [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() {
}
}