20 lines
225 B
Kotlin
Vendored
20 lines
225 B
Kotlin
Vendored
package test
|
|
|
|
interface KotlinInterface {
|
|
@JvmDefault
|
|
fun bar() {
|
|
|
|
}
|
|
|
|
@JvmDefault
|
|
var foo: String
|
|
get() = "123"
|
|
set(field) {
|
|
|
|
}
|
|
}
|
|
|
|
|
|
abstract class KotlinClass : KotlinInterface {
|
|
|
|
} |