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
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND: JS_IR
import kotlin.contracts.*
@@ -68,16 +68,16 @@ class Test1 {
init {
inlineMe {
a += "allowed"
<!VARIABLE_EXPECTED!>a<!> += "allowed"
}
crossinlineMe {
b += "not allowed"
<!VARIABLE_EXPECTED!>b<!> += "not allowed"
}
noinlineMe {
c += "not allowed"
<!VARIABLE_EXPECTED!>c<!> += "not allowed"
}
notinline {
d += "not allowed"
<!VARIABLE_EXPECTED!>d<!> += "not allowed"
}
}
}