Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/native/unusedParam/native.kt
T
2023-01-09 08:57:08 +00:00

13 lines
299 B
Kotlin
Vendored

// FIR_IDENTICAL
external fun foo(a: String): Int = definedExternally
external class Bar(b: Int, c: Char) {
fun baz(d: Int) { definedExternally }
}
external object Obj {
fun test1(e: String) { definedExternally }
object Nested {
fun test2(g: Int) { definedExternally }
}
}