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

20 lines
312 B
Kotlin
Vendored

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