ec0b9aa343
#KT-23967 Fixed
17 lines
199 B
Kotlin
Vendored
17 lines
199 B
Kotlin
Vendored
package test
|
|
|
|
interface KotlinInterface {
|
|
@JvmDefault
|
|
fun bar() {
|
|
|
|
}
|
|
|
|
// @JvmDefault
|
|
// val foo: String
|
|
// get() = "123"
|
|
}
|
|
|
|
|
|
abstract class KotlinClass : KotlinInterface {
|
|
|
|
} |