Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/QExtendsString.java
2014-03-19 23:24:27 +04:00

10 lines
192 B
Java
Vendored

package test;
class Question {
// id2 is to prevent java type parameter type inference
static <T> T id2(T p) { return p; }
{
String s = id2(TestPackage.id(null));
}
}