Minor. Update tests

This commit is contained in:
Ilmir Usmanov
2020-07-31 14:33:26 +02:00
parent e11c90f26c
commit 4d21a496fe
2 changed files with 5 additions and 4 deletions
@@ -2,6 +2,7 @@
// IGNORE_BACKEND: NATIVE // IGNORE_BACKEND: NATIVE
// WITH_RUNTIME // WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME // KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND: JS_IR
import kotlin.contracts.* import kotlin.contracts.*
@@ -68,16 +68,16 @@ class Test1 {
init { init {
inlineMe { inlineMe {
a += "allowed" <!VARIABLE_EXPECTED!>a<!> += "allowed"
} }
crossinlineMe { crossinlineMe {
b += "not allowed" <!VARIABLE_EXPECTED!>b<!> += "not allowed"
} }
noinlineMe { noinlineMe {
c += "not allowed" <!VARIABLE_EXPECTED!>c<!> += "not allowed"
} }
notinline { notinline {
d += "not allowed" <!VARIABLE_EXPECTED!>d<!> += "not allowed"
} }
} }
} }