Files
kotlin-fork/compiler/testData/codegen/boxInline/callableReference/intrinsic.2.kt
T
Michael Bogdanov e200b97ca4 Inline callable references
#KT-6900 Fixed
2015-04-13 16:11:21 +03:00

5 lines
87 B
Kotlin
Vendored

package test
inline fun call(p: String, s: String.() -> Int): Int {
return p.s()
}