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

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 }
}