Files
kotlin/idea/testData/multiModuleQuickFix/memberFunParameterToReceiverByHeader/js/js.kt
2017-09-15 18:29:06 +03:00

9 lines
103 B
Kotlin
Vendored

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