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