Fix testData/intentions: replace deprecated reverse usages.

This commit is contained in:
Ilya Gorbunov
2015-10-02 20:17:45 +03:00
parent 782f41580e
commit 1c416ae5f3
6 changed files with 6 additions and 6 deletions
@@ -2,5 +2,5 @@
fun main() {
val x = 1..4
x.reverse().forEach<caret> { it }
x.reversed().forEach<caret> { it }
}