// WITH_RUNTIME // IGNORE_BACKEND_FIR: JVM_IR // !LANGUAGE: +UseBuilderInferenceWithoutAnnotation fun buildMap(builderAction: MutableMap.() -> Unit): Map = mapOf() fun box(): String { val x = buildMap { put("", "") } return "OK" }