11 lines
162 B
Kotlin
Vendored
11 lines
162 B
Kotlin
Vendored
// COMPILER_ARGUMENTS: -Xjvm-default=all-compatibility
|
|
|
|
interface KtInterface {
|
|
fun defaultFun() {
|
|
println("default")
|
|
}
|
|
|
|
fun withoutBody()
|
|
}
|
|
|