Files
kotlin-fork/compiler/testData/asJava/ultraLightClasses/defaultMethodInKotlinWithSettingAll.kt
T
Jinseong Jeon aad02c1259 FIR LC: introduce modifier list for members
to simulate `default` modifier of methods in interface
2021-09-29 22:02:48 +02:00

13 lines
188 B
Kotlin
Vendored

// CHECK_BY_JAVA_FILE
// COMPILER_ARGUMENTS: -Xjvm-default=all
interface KtInterface {
fun defaultFun() {
println("default")
}
fun withoutBody()
}
// FIR_COMPARISON