13 lines
260 B
Kotlin
Vendored
13 lines
260 B
Kotlin
Vendored
// !DIAGNOSTICS: -DEPRECATION
|
|
@nativeGetter
|
|
fun String.foo(n: Int): Int?
|
|
@nativeGetter
|
|
fun String.bar(n: Int): Int? = noImpl
|
|
|
|
|
|
external interface T {
|
|
@nativeGetter
|
|
fun foo(d: Double): String?
|
|
@nativeGetter
|
|
fun bar(d: Double): String? = noImpl
|
|
} |