mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
7 lines
189 B
Kotlin
Vendored
7 lines
189 B
Kotlin
Vendored
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
@kotlin.internal.LowPriorityInOverloadResolution
|
|
fun foo(i: Int) = 1
|
|
|
|
fun foo(a: Any) = 2
|
|
|
|
fun box() = if (foo(1) == 2) "OK" else "fail" |