22fd7921fe
^KT-56361 Fixed
8 lines
125 B
Kotlin
Vendored
8 lines
125 B
Kotlin
Vendored
fun foo() {
|
|
"OK".apply { this }
|
|
"OK".apply2 { this }
|
|
}
|
|
|
|
|
|
inline fun String.apply2(f: String.() -> String) = this.f()
|