Fix interpreter tests after changing offset calculation
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import kotlin.collections.*
|
||||
import kotlin.sequences.*
|
||||
|
||||
const val a = listOf(1, 2, 3).<!EVALUATED: `1, 2, 3`!>joinToString()<!>
|
||||
const val b = sequenceOf(-1, -2, -3).<!EVALUATED: `-1.-2.-3`!>joinToString(separator = ".")<!>
|
||||
const val a = <!EVALUATED: `1, 2, 3`!>listOf(1, 2, 3).joinToString()<!>
|
||||
const val b = <!EVALUATED: `-1.-2.-3`!>sequenceOf(-1, -2, -3).joinToString(separator = ".")<!>
|
||||
|
||||
Reference in New Issue
Block a user