Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
replaceMathMinWithCoerceAtMost
/
customMinMethod.kt
blob: fe831ae9cb661b392afcdd2423d127a108a2619f [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo
()
{
Math
.
min
(
1
,
2
)<
caret
>
}
object
Math
{
fun min
(
a
:
Int
,
b
:
Int
)
=
0
}