Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/lowPriorityInResolution.kt
T
Kirill Rakhman 951b299268 [FIR] Rewrite redeclaration checks
#KT-60124 Fixed
#KT-60573 Fixed
2023-07-27 08:06:20 +00:00

11 lines
192 B
Kotlin
Vendored

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