Files
kotlin-fork/idea/testData/multiModuleQuickFix/memberFunReceiverToParameterByImpl/js/js.kt
T
2017-08-15 19:08:27 +03:00

11 lines
144 B
Kotlin
Vendored

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