Files
kotlin/compiler/testData/codegen/boxInline/simple/propertyModifiers.1.kt

10 lines
203 B
Kotlin

import test.*
fun box() : String {
val p = P()
if (p.testPrivate() != "OK") return "fail 1 ${p.testPrivate()}"
if (p.testFinal() != "OK") return "fail 2 ${p.testFinal()}"
return "OK"
}