blob: 9395107e292d727bc4d44ed8d3f3952fb5470fb4 [file]
// !CHECK_TYPE
operator fun Int.component1() = "a"
fun foo(a: Number) {
val (x) = a as Int
checkSubtype<Int>(a)
checkSubtype<String>(x)
}