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

9 lines
103 B
Plaintext
Vendored

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