13 lines
262 B
Kotlin
Vendored
13 lines
262 B
Kotlin
Vendored
// !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?
|
|
} |