Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/evaluate/kt9443.kt
T
2015-10-26 19:23:09 +03:00

18 lines
360 B
Kotlin
Vendored

abstract class BaseClass {
protected open val menuId: Int = 0
public fun run(): Pair<String, Boolean> =
"$menuId" to (menuId == 0)
}
class ImplClass: BaseClass() {
override val menuId: Int = 3
}
public fun box(): String {
val result = ImplClass().run()
if (result != ("3" to false)) return "Fail: $result"
return "OK"
}