diff --git a/compiler/testData/diagnostics/testsWithJsStdLib/platformDependent.kt b/compiler/testData/diagnostics/testsWithJsStdLib/platformDependent.kt index 7a5381d24c7..999f379fc9b 100644 --- a/compiler/testData/diagnostics/testsWithJsStdLib/platformDependent.kt +++ b/compiler/testData/diagnostics/testsWithJsStdLib/platformDependent.kt @@ -1,5 +1,5 @@ fun test(m: Map, mm: MutableMap) { - m.getOrDefault("2", 1) - mm.getOrDefault(1, "2") + m.getOrDefault("2", 1) + mm.getOrDefault(1, "2") mm.remove(1, "2") }