Add test for KT-52762

This commit is contained in:
Mikhail Glukhikh
2022-06-17 16:14:14 +02:00
committed by Space
parent b7a215334e
commit 9fbafc3eb9
5 changed files with 34 additions and 0 deletions
@@ -0,0 +1,11 @@
// FULL_JDK
import java.util.concurrent.ConcurrentHashMap
fun main() {
val map = ConcurrentHashMap<String, String>()
map.put(
<!NAMED_PARAMETER_NOT_FOUND!>key<!> = "key",
<!NAMED_PARAMETER_NOT_FOUND!>value<!> = "value"
<!NO_VALUE_FOR_PARAMETER, NO_VALUE_FOR_PARAMETER!>)<!>
}