Files
kotlin-fork/compiler/testData/lineNumber/custom/smapInlineInIntrinsicArgument.kt
T
2015-04-09 09:25:26 +03:00

17 lines
214 B
Kotlin
Vendored

fun box(){
test() +
fail()
fail() +
test()
}
inline fun test() : String {
return "123"
}
fun fail() : String {
throw AssertionError("fail")
}
// 2 10 3 5 6 10 7 10 14