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

14 lines
297 B
Kotlin
Vendored

// !DIAGNOSTICS: -DEPRECATION
<!NON_MEMBER_FUNCTION_NO_BODY!>@nativeGetter
fun String.foo(n: Int): Int?<!>
@nativeGetter
fun String.bar(n: Int): Int? = definedExternally
external interface T {
@nativeGetter
fun foo(d: Double): String?
@nativeGetter
fun bar(d: Double): String?
}