Fix interpreter tests after changing offset calculation

This commit is contained in:
Ilya Chernikov
2022-03-14 15:43:37 +01:00
committed by teamcity
parent 738c1f34df
commit 53bc593062
71 changed files with 359 additions and 355 deletions
+6 -6
View File
@@ -27,9 +27,9 @@ fun foo(): Unit {}
@CompileTimeCalculation
fun bar(p1: Int): Unit {}
const val d1 =<!EVALUATED: `true`!>::foo is kotlin.reflect.KFunction<*><!>
const val d2 =<!EVALUATED: `true`!>::foo is Function0<*><!>
const val d3 =<!EVALUATED: `false`!>::foo is Function1<*, *><!>
const val d4 =<!EVALUATED: `true`!>::bar is kotlin.reflect.KFunction<*><!>
const val d5 =<!EVALUATED: `false`!>::bar is Function0<*><!>
const val d6 =<!EVALUATED: `true`!>::bar is Function1<*, *><!>
const val d1 = <!EVALUATED: `true`!>::foo is kotlin.reflect.KFunction<*><!>
const val d2 = <!EVALUATED: `true`!>::foo is Function0<*><!>
const val d3 = <!EVALUATED: `false`!>::foo is Function1<*, *><!>
const val d4 = <!EVALUATED: `true`!>::bar is kotlin.reflect.KFunction<*><!>
const val d5 = <!EVALUATED: `false`!>::bar is Function0<*><!>
const val d6 = <!EVALUATED: `true`!>::bar is Function1<*, *><!>