Files
kotlin-fork/idea/testData/multiModuleQuickFix/other/memberFunReceiverToParameterByImpl/jvm/jvm.kt
T
2019-08-27 17:26:08 +07:00

9 lines
99 B
Kotlin
Vendored

actual class Foo {
actual fun String.foo(n: Int) {
}
}
fun Foo.test1() {
"1".foo(2)
}