// FIR_IDENTICAL // !DIAGNOSTICS: -UNUSED_PARAMETER import java.util.* interface Foo class Bar(val list: MutableList) {} fun test(map: MutableMap>) { map.getOrPut1("", { Bar(ArrayList()) }) } fun MutableMap.getOrPut1(key: K, defaultValue: () -> V): V = throw Exception()