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