Minor. Update tests
This commit is contained in:
@@ -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.*
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user