package b class A { fun get(i: Int): List = throw Exception("$i") } fun bar(l: List) = l fun test(a: A) { bar(a[12]) }