Perform inline checks in IR tests

This commit is contained in:
Mikhael Bogdanov
2021-01-20 08:07:07 +01:00
parent 216b775095
commit 91717cdcdd
6 changed files with 9 additions and 10 deletions
@@ -1,8 +1,8 @@
// IGNORE_BACKEND_MULTI_MODULE: JVM_IR, JVM_MULTI_MODULE_IR_AGAINST_OLD
// FILE: 1.kt
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND_FIR: JVM_IR
package builders
inline fun call(crossinline init: () -> Unit) {
return init()
}
@@ -1,8 +1,8 @@
// IGNORE_BACKEND_MULTI_MODULE: JVM_IR, JVM_MULTI_MODULE_IR_AGAINST_OLD
// FILE: 1.kt
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND_FIR: JVM_IR
package builders
inline fun call(crossinline init: () -> Unit) {
return init()
}
+1 -1
View File
@@ -1,7 +1,7 @@
// This test depends on line numbers
// WITH_RUNTIME
// FILE: 1.kt
// IGNORE_BACKEND_FIR: JVM_IR
package test
interface SuspendRunnable {