Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
convertToForEachFunctionCall
/
binaryExpressionLoopRange.kt
blob: 4714e5510b7b7274d2fd8438f59bde1b217330e0 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun main
()
{
<caret>
for
(
x
in
1.rangeTo
(
2
))
{
x
}
}