Files
kotlin-fork/compiler/testData/codegen/box/jvmOverloads/generics.kt
T
2016-03-09 10:25:38 +03:00

20 lines
384 B
Kotlin
Vendored

// WITH_RUNTIME
// FILE: Test.java
public class Test {
public static String invokeMethodWithOverloads() {
C<String> c = new C<String>();
return c.foo("O");
}
}
// FILE: generics.kt
class C<T> {
@kotlin.jvm.JvmOverloads public fun foo(o: T, k: String = "K"): String = o.toString() + k
}
fun box(): String {
return Test.invokeMethodWithOverloads()
}