// FIR_IDENTICAL package f fun f(i: Int, c: Collection): List {throw Exception()} fun f(a: Any, l: List): Collection {throw Exception()} fun test(l: List) { f(1, emptyList()) } fun emptyList(): List {throw Exception()}