Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/lowPriorityInResolution.kt
T
2023-08-18 13:29:20 +00:00

11 lines
216 B
Kotlin
Vendored

@Suppress("INVISIBLE_MEMBER", <!ERROR_SUPPRESSION!>"INVISIBLE_REFERENCE"<!>)
@kotlin.internal.LowPriorityInOverloadResolution
fun foo(): Int = 1
fun foo(): String = ""
fun test() {
val s = foo()
s.length
}