Renamed test data folder

This commit is contained in:
Valentin Kipyatkov
2015-10-16 22:47:30 +03:00
parent dc909ac166
commit 4e73fe0f39
18 changed files with 114 additions and 114 deletions
@@ -0,0 +1,22 @@
import java.util.HashMap;
import kotlinApi.KotlinClass;
class X {
int get(int index) {
return 0;
}
}
class C {
String foo(HashMap<String, String> map) {
return map.get("a");
}
int foo(X x) {
return x.get(0);
}
int foo(KotlinClass kotlinClass) {
return kotlinClass.get(0); // not operator!
}
}