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

13 lines
231 B
Kotlin
Vendored

@nativeSetter
fun String.foo(n: Int, v: Any)
@nativeSetter
fun String.bar(n: Int, v: Any) {}
@native
class C {
@nativeSetter
fun foo(d: Double, v: Any): Any
@nativeSetter
fun bar(d: Double, v: Any): Any = noImpl
}