Files
kotlin-fork/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendClassWithJvmDefaultImplementation.kt
T
Simon Ogorodnik 33f937c923 Remove property with @JvmDefault to make test pass
In sake of #KT-28708
2018-12-10 16:08:54 +03:00

14 lines
135 B
Kotlin
Vendored

package test
interface KotlinInterface {
@JvmDefault
fun bar() {
}
}
abstract class KotlinClass : KotlinInterface {
}