aca355acdc
KT-9708 Ambiguous syntax for Double ranges: `.1...2` (triple dot) #KT-9708 Fixed
11 lines
80 B
Kotlin
Vendored
11 lines
80 B
Kotlin
Vendored
...
|
|
|
|
fun foo() {
|
|
for (i in 1...2) {
|
|
|
|
}
|
|
|
|
for (i in 1.. .2) {
|
|
|
|
}
|
|
} |