Fix interpreter tests after changing offset calculation
This commit is contained in:
+6
-6
@@ -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<*, *><!>
|
||||
|
||||
Reference in New Issue
Block a user