fixed IDEADEV-6895
[fedora-idea.git] / testData / refactoring / introduceParameter / before12.java
blob477945db1ca3dd777efe26c14354bd36f99a4950
1 public class Test {
2 int method(int i) {
3 return 0;
6 int m(int i, int j) {
7 return i + <selection>method(j)</selection>;
11 class X {
12 public int n(int a) {
13 return (new Test()).m(a, a*2);