125c72cb8d
Old and new schemes
13 lines
197 B
Kotlin
Vendored
13 lines
197 B
Kotlin
Vendored
package base
|
|
|
|
interface Check {
|
|
fun test(): String {
|
|
return "fail";
|
|
}
|
|
|
|
var test: String
|
|
get() = "123"
|
|
set(value) { value.length}
|
|
}
|
|
|
|
open class CheckClass : Check |