Minor, package "test" in compileJavaAgainstKotlin testData

This commit is contained in:
Alexander Udalov
2014-03-18 19:23:27 +04:00
parent 7b7619d1f3
commit b6b1f2a94a
105 changed files with 243 additions and 43 deletions

View File

@@ -1,7 +1,9 @@
package test;
class Question {
// id2 is to prevent java type parameter type inference
static <T> T id2(T p) { return p; }
{
String s = id2(_DefaultPackage.id(null));
String s = id2(TestPackage.id(null));
}
}