IDEADEV-25972
[fedora-idea.git] / testData / refactoring / makeMethodStatic / after14.java
blob439ba36cd5b538ad8ca62ad0ab153b7d25464649
1 public class Test {
2 static Test <caret>method(final Test anObject) {
3 final Test[] result = new int[1];
4 new Runnable() {
5 public void run() {
6 result[0] = anObject;
7 }
8 }.run();
9 return result[0];