blob: bbda64c5fffd3f30ebfce63f5db666bb1e7fbfbd [file] [log] [blame]
public class TestClass {
void x() {
new Exception() {
int doSomething() { return 1; }
void a() {
int j = doSomething();
}
void b() {
doSomething();
}
};
}
}