Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
replaceMathMinWithCoerceAtMost
/
KT-19232-1.kt
blob: 48de805348af545e3aaafc24ee237baef520880a [
file
] [
log
] [
blame
]
// WITH_RUNTIME
import
java
.
lang
.
Math
.
min
fun foo
()
{
Pair
(<
caret
>
min
(
1
,
3
),
min
(
2
,
4
)).
let
{
println
(
it
)
}
}