blob: 776010cd516d949f3315a2e2bbc421e2647b9825 [file] [log] [blame]
fun foo() {
"OK".apply { this }
"OK".apply2 { this }
}
inline fun String.apply2(f: String.() -> String) = this.f()