Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/native/unusedParam/native.kt
T
2015-09-08 12:11:30 +03:00

19 lines
257 B
Kotlin
Vendored

@native
fun foo(a: String): Int = noImpl
@native
fun Int.foo(a: String): Int = noImpl
@native
class Bar(b: Int, c: Char) {
fun baz(d: Int) {}
}
@native
object Obj {
fun test1(e: String) {}
object Nested {
fun test2(g: Int) {}
}
}