Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3173.kt
T
2015-04-07 13:08:53 +03:00

5 lines
118 B
Kotlin
Vendored

fun box(): String {
val sum = fun Int.(other: Int) = this + other
return if (1 sum 2 == 3) "OK" else "Fail"
}