Files
openide/java/java-tests/testData/refactoring/inlineMethod/IDEADEV3672.java
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

13 lines
223 B
Java

class Tester1 {
void caller() {
<caret>method();
}
void method() {
new Runnable() {
public void run() {
other();
}
};
}
void other() { }
}