Files
T
2019-08-27 17:26:08 +07:00

9 lines
132 B
Kotlin
Vendored

// "Convert receiver to parameter" "true"
expect class Foo {
fun <caret>String.foo(n: Int)
}
fun Foo.test() {
"1".foo(2)
}