mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
9 lines
167 B
Kotlin
Vendored
9 lines
167 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER, -DEPRECATION
|
|
|
|
fun foo() {
|
|
@nativeInvoke
|
|
fun Int.ext() = 1
|
|
|
|
@nativeInvoke
|
|
fun Int.invoke(a: String, b: Int) = "OK"
|
|
} |