Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
ir
/
irText
/
firProblems
/
putIfAbsent.kt
blob: 130192cdbec83c22fa3d03fc4a5e38f0e9a3e7e5 [
file
]
// FIR_IDENTICAL
// TARGET_BACKEND: JVM
// WITH_STDLIB
// FULL_JDK
class
Owner
{
fun
<
T
>
foo
(
x
:
T
,
y
:
T
)
{
val map
=
mutableMapOf
<
T
,
T
>()
map
.
putIfAbsent
(
x
,
y
)
}
}