Files
openide/java/java-tests/testData/refactoring/makeMethodStatic/before14.java
Dmitry Jemerov 10ca2b4e5f test++
2009-09-10 21:57:00 +04:00

11 lines
234 B
Java

public class Test {
Test <caret>method() {
final Test[] result = new int[1];
new Runnable() {
public void run() {
result[0] = Test.this;
}
}.run();
return result[0];
}
}