[JS IR] Generate JS Klib ABI tests

- add first test
This commit is contained in:
Roman Artemev
2021-12-06 19:21:09 +03:00
committed by TeamCityServer
parent c3c2bb5884
commit 23d7f94dca
42 changed files with 349 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
fun test1(): String {
try {
return qux(true)
} catch(ex: Throwable) {
return "O"
}
return "FAIL2"
}
fun test2(): String = qux(false)
fun box(): String {
return test1() + test2()
}