Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/native/optionlBody/nativeGetter.kt
T

14 lines
279 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -DEPRECATION
@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?
}