blob: 5b39f22a211cb063bb47889859fc4a1845f49c31 [file]
// FIR_IDENTICAL
// ISSUE: KT-65235
class Scope {
operator fun String.invoke(): Int = 1
}
fun scope(s: Scope.() -> Unit) {}
fun somewhere() {
val x: String = listOf("a").first()
scope {
val y: String = listOf("a").first()
}
}