blob: fcf7a0583bdf1bd1edbde431d803f04e65fb675f [file] [log] [blame]
public class TestClass {
void x() {
new Exception() {
int doSomething() { return 1; }
void a() {
<selection>doSomething()</selection>;
}
void b() {
doSomething();
}
};
}
}