blob: 088358060ffb3f1c93a2beb22a819bbd33c3d4d4 [file]
// NO_CHECK_LAMBDA_INLINING
// FILE: 1.kt
inline fun test(p: Any) {
p.toString()
}
// FILE: 2.kt
fun box() : String {
test {"123"}
return "OK"
}