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

9 lines
99 B
Kotlin
Vendored

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