Files
kotlin-fork/compiler/testData/psi/TripleDot.kt
T
Andrey Breslav aca355acdc '...' reserved as a token
KT-9708 Ambiguous syntax for Double ranges: `.1...2` (triple dot)

 #KT-9708 Fixed
2015-11-30 19:36:33 +03:00

11 lines
80 B
Kotlin
Vendored

...
fun foo() {
for (i in 1...2) {
}
for (i in 1.. .2) {
}
}