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

12 lines
322 B
Kotlin
Vendored

import test.*
fun box(): String {
val packageResult = packageInline { a, b -> a + b }
if (packageResult != "OK") return "package inline fail: $packageResult"
val samePackageResult = samePackageCall()
if (samePackageResult != "OK") return "same package inline fail: $samePackageResult"
return "OK"
}