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
@@ -17,10 +17,10 @@
package org.jetbrains.kotlin.codegen.ir
import org.jetbrains.kotlin.ObsoleteTestInfrastructure
import org.jetbrains.kotlin.codegen.AbstractBlackBoxCodegenTest
import org.jetbrains.kotlin.codegen.AbstractBlackBoxInlineCodegenTest
import org.jetbrains.kotlin.test.TargetBackend
@OptIn(ObsoleteTestInfrastructure::class)
abstract class AbstractIrBlackBoxInlineCodegenTest : AbstractBlackBoxCodegenTest() {
abstract class AbstractIrBlackBoxInlineCodegenTest : AbstractBlackBoxInlineCodegenTest() {
override val backend = TargetBackend.JVM_IR
}