Files
kotlin/compiler/testData/codegen/boxInline/modifiers/propertyModifiers.1.kt
2015-05-27 18:09:40 +03:00

10 lines
203 B
Kotlin
Vendored

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"
}