blob: a6bc3b2fbe78cc05b3c19fc22cce8c59042324df [file] [log] [blame]
class Tester1 {
void caller() {
<caret>method();
}
void method() {
new Runnable() {
public void run() {
other();
}
};
}
void other() { }
}