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