Files
kotlin/idea/testData/refactoring/introduceJavaParameter/javaMethod.java.after
2015-05-08 11:43:00 +03:00

20 lines
213 B
Plaintext

class A {
int x;
A(int x) {
this.x = x;
}
}
class J {
int foo(int c, A a1) {
return a1.x * c
}
}
class Test {
void test() {
new J().foo(3, new A(1 + 2));
}
}