Files
kotlin/compiler/testData/diagnostics/testsWithJsStdLib/native/nativeInvoke/onLocalExtensionFun.kt

9 lines
155 B
Kotlin

// !DIAGNOSTICS: -UNUSED_PARAMETER
fun foo() {
[nativeInvoke]
fun Int.ext() = 1
[nativeInvoke]
fun Int.invoke(a: String, b: Int) = "OK"
}