This commit is contained in:
Dmitry Jemerov
2009-09-10 21:57:00 +04:00
parent 7980717db9
commit 10ca2b4e5f
48 changed files with 10 additions and 4 deletions
@@ -0,0 +1,11 @@
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];
}
}