Files
kotlin-fork/compiler/testData/codegen/box/intrinsics/longRangeWithExplicitDot.kt
T
Alexander Udalov 7ce62a5b64 Remove generated codegen tests, move all testData to box/
A single test file will be generated out of box/ directory
2013-01-28 18:20:21 +04:00

6 lines
141 B
Kotlin

fun box(): String {
val l: Long = 1
val l2: Long = 2
val r = l.rangeTo(l2)
return if (r.start == l && r.end == l2) "OK" else "fail"
}