Files
kotlin-fork/compiler/testData/asJava/ultraLightClasses/defaultMethodInKotlinWithSettingAllCompatibility.kt
T
Mikhail Zarechenskiy 111e54c8c1 Do not generate DefaultImpls for light classes if not needed
#KT-41130 In Progress
2021-03-18 16:38:52 +03:00

10 lines
182 B
Kotlin
Vendored

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