Files
kotlin/compiler/testData/codegen/boxInline/simple/severalUsage.1.kt
2014-07-07 10:51:46 +04:00

7 lines
134 B
Kotlin
Vendored

fun box(): String {
val result = runTest{minByTest<Int> { it }}
if (result != 1) return "test1: ${result}"
return "OK"
}