Files
kotlin/compiler/testData/codegen/boxMultiFile/kt9958Interface/b.kt
2015-12-12 11:41:35 +03:00

10 lines
107 B
Kotlin
Vendored

package b
var result = "fail"
abstract class A {
protected fun foo() {
result = "OK"
}
}