mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
19 lines
368 B
Kotlin
Vendored
19 lines
368 B
Kotlin
Vendored
// 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()
|
|
}
|