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

20 lines
280 B
Kotlin
Vendored

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