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

9 lines
101 B
Plaintext
Vendored

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