Files
kotlin/compiler/testData/codegen/boxInline/noInline/lambdaAsGeneric.kt
2016-02-27 15:40:05 +03:00

15 lines
162 B
Kotlin
Vendored

// FILE: 1.kt
inline fun <T> test(p: T) {
p.toString()
}
// FILE: 2.kt
//NO_CHECK_LAMBDA_INLINING
fun box() : String {
test {"123"}
return "OK"
}