Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
platformDependent.fir.kt
blob: 7a5381d24c7911efacb8f7b50e6177e8a90b0db3 [
file
]
fun test
(
m
:
Map
<
String
,
Int
>,
mm
:
MutableMap
<
Int
,
String
>)
{
m
.<!
UNRESOLVED_REFERENCE
!>
getOrDefault
<!>(
"2"
,
1
)
mm
.<!
UNRESOLVED_REFERENCE
!>
getOrDefault
<!>(
1
,
"2"
)
mm
.
remove
(
1
,
<!
TOO_MANY_ARGUMENTS
!>
"2"
<!>)
}