mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
15 lines
162 B
Kotlin
Vendored
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"
|
|
}
|