Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertRangeCheckToTwoComparisons
/
insideForLoop2.kt.after
blob: 4f98df1522f86993b192d5fd4ea36c8a23562fc2 [
file
] [
log
] [
blame
]
fun foo
(
bar
:
Int
)
{
for
(
bar
in
1.
.
10
)
{
if
(
1
<=
bar
&&
bar
<=
10
)
{
}
}
}