Files
kotlin-fork/compiler/testData/lineNumber/custom/smapInlineInIntrinsicArgument.kt
T
2016-04-20 17:07:09 +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 18 3 5 6 19 7 10 14