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

14 lines
308 B
Kotlin
Vendored

// !DIAGNOSTICS: -DEPRECATION
<!NON_MEMBER_FUNCTION_NO_BODY!>@nativeSetter
fun String.foo(n: Int, v: Any)<!>
@nativeSetter
fun String.bar(n: Int, v: Any) {}
external class C {
@nativeSetter
fun foo(d: Double, v: Any): Any
@nativeSetter
fun bar(d: Double, v: Any): Any = definedExternally
}