Merge boxWithJava testData into box, delete BoxWithJava test
This commit is contained in:
committed by
Alexander Udalov
parent
16a0ddd2fb
commit
f8dfaf4599
@@ -0,0 +1,19 @@
|
||||
// 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()
|
||||
}
|
||||
Reference in New Issue
Block a user