Move kt55912 test into involvesIrInterpreter dir

This commit is contained in:
Ivan Kylchik
2023-01-27 12:01:22 +01:00
committed by Space Team
parent 6a73650b35
commit 706a8a91f6
12 changed files with 64 additions and 64 deletions
@@ -0,0 +1,8 @@
public annotation class Entity(val foreignKeys: Array<String>)
@Entity(foreignKeys = kotlin.arrayOf("id")) // works without "kotlin."
class Record
fun box(): String {
return "OK"
}