Files
kotlin-fork/compiler/testData/codegen/java8/box/jvm8/defaults/defaultArgs.kt
T
2018-04-03 19:18:09 +02:00

15 lines
233 B
Kotlin
Vendored

// !API_VERSION: 1.3
// JVM_TARGET: 1.8
// WITH_RUNTIME
interface Z {
@kotlin.annotations.JvmDefault
fun test(s: String = "OK"): String {
return s
}
}
class Test: Z
fun box(): String {
return Test().test()
}