"Find Usages": separate Kotlin and Java tests

This commit is contained in:
Alexey Sedunov
2013-10-28 20:59:50 +04:00
parent f1a7d707a0
commit f41cfa2b8b
160 changed files with 328 additions and 313 deletions
@@ -0,0 +1,13 @@
class Usages {
void foo(A a) {
a.foo("");
System.out.println(a.getA() + " " + a.getB());
a.setB(12);
}
void foo(X x) {
x.foo("");
System.out.println(x.getA() + " " + x.getB());
x.setB(12);
}
}