e6d923f65c
Some of them should be INVISIBLE_MEMBER though
11 lines
248 B
Kotlin
Vendored
11 lines
248 B
Kotlin
Vendored
<!CONFLICTING_OVERLOADS!>@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
@kotlin.internal.LowPriorityInOverloadResolution
|
|
fun foo(): Int<!> = 1
|
|
|
|
<!CONFLICTING_OVERLOADS!>fun foo(): String<!> = ""
|
|
|
|
fun test() {
|
|
val s = foo()
|
|
s.length
|
|
}
|