Renamed test data folders

This commit is contained in:
Valentin Kipyatkov
2015-07-21 11:37:19 +03:00
parent 9ad04a1a26
commit a81ed335d0
28 changed files with 24 additions and 24 deletions
@@ -0,0 +1,10 @@
// WITH_RUNTIME
// IS_APPLICABLE: FALSE
fun Int.withIndex(): List<Pair<Int, Int>> = linkedListOf<Pair<Int, Int>>()
fun foo(s: Int) {
for ((index<caret>, a) in s.withIndex()) {
}
}