927280f7ce
(cherry picked from commit 948a4b6)
10 lines
191 B
Kotlin
Vendored
10 lines
191 B
Kotlin
Vendored
// test.Simple
|
|
|
|
package test
|
|
|
|
abstract class Simple(private val prop: String) {
|
|
protected val anotherProp: Int = 5
|
|
|
|
abstract fun strFun(val x: Long): String
|
|
fun voidFun() {}
|
|
} |