Fix interpreter tests after changing offset calculation
This commit is contained in:
+1
-1
@@ -18,5 +18,5 @@ fun <T : Number> plus(a: Temp<T>, b: Temp<T>): Double {
|
||||
}
|
||||
}
|
||||
|
||||
const val a1 = Temp<Int>(1).<!EVALUATED: `3.0`!>plus(Temp<Double>(2.0))<!>
|
||||
const val a1 = <!EVALUATED: `3.0`!>Temp<Int>(1).plus(Temp<Double>(2.0))<!>
|
||||
const val a2 = <!EVALUATED: `7.0`!>plus(Temp<Int>(3), Temp<Int>(4))<!>
|
||||
|
||||
Reference in New Issue
Block a user