[IR] Reorganize test files in involvesIrInterpreter dir

This commit is contained in:
Ivan Kylchik
2023-04-11 16:26:44 +02:00
committed by Space Team
parent c00c7ffbe0
commit 621f5a0fb7
38 changed files with 1001 additions and 1001 deletions
@@ -0,0 +1,14 @@
// TARGET_BACKEND: JVM_IR
annotation class Key(val value: String)
object Messanger {
const val DEFAULT_TEXT = <!EVALUATED("OK")!>"OK"<!>
fun message(@Key(value = <!EVALUATED("OK")!>DEFAULT_TEXT<!>) text: String = <!EVALUATED("OK")!>DEFAULT_TEXT<!>): String {
return text
}
}
fun box(): String {
return Messanger.message()
}