Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertRangeCheckToTwoComparisons
/
otherOp.kt
blob: 15eff28f5dd05b942f9526c4699e0288e8de85da [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo
(
bar
:
Int
)
{
if
(
bar
in
arrayOf
(
1
,
2
,
3
)<
caret
>)
{
}
}