blob: 59b728e2021918514faefe7e1dda1499c2340c21 [file] [log] [blame]
// !CHECK_TYPE
// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE
// FILE: 2.kt
package b
import a.A
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@kotlin.internal.HidesMembers
fun A.forEach(i: Int) = i
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@kotlin.internal.HidesMembers
fun A.forEach(s: String) {}
// FILE: 1.kt
package a
import b.*
import checkType
import _
class A {
fun forEach() = this
fun forEach(i: Int) = this
fun forEach(i: String) = this
}
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@kotlin.internal.HidesMembers
fun A.forEach() = ""
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@kotlin.internal.HidesMembers
fun A.forEach(s: String) {}
fun test(a: A) {
a.forEach() checkType { _<String>() }
a.forEach(1) checkType { _<Int>() }
a.<!OVERLOAD_RESOLUTION_AMBIGUITY!>forEach<!>("")
with(a) {
forEach() checkType { _<String>() }
forEach(1) checkType { _<Int>() }
<!OVERLOAD_RESOLUTION_AMBIGUITY!>forEach<!>("")
}
}