blob: 9dfd1cd2988159194b148480b28118fa29bbca37 [file]
fun <T> materialize(): T = throw Exception()
interface A
fun takeA(a: A) {}
fun test() {
takeA(if(true) materialize() else materialize())
}