33f937c923
In sake of #KT-28708
14 lines
135 B
Kotlin
Vendored
14 lines
135 B
Kotlin
Vendored
package test
|
|
|
|
interface KotlinInterface {
|
|
@JvmDefault
|
|
fun bar() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
abstract class KotlinClass : KotlinInterface {
|
|
|
|
} |