13 lines
209 B
Kotlin
Vendored
13 lines
209 B
Kotlin
Vendored
// !DIAGNOSTICS: -DEPRECATION
|
|
@nativeInvoke
|
|
fun String.foo(): Int
|
|
@nativeInvoke
|
|
fun String.bar(): Int = noImpl
|
|
|
|
|
|
external object O {
|
|
@nativeInvoke
|
|
fun foo()
|
|
@nativeInvoke
|
|
fun bar() { noImpl }
|
|
} |