Files
kotlin-fork/compiler/testData/codegen/boxInline/reified/capturedLambda2.1.kt
T

8 lines
146 B
Kotlin
Vendored

//NO_CHECK_LAMBDA_INLINING
import test.*
inline fun <reified R> foo() = bar<R, String>() {"OK"}
fun box(): String {
return foo<String>()()
}