[FIR-TEST] Move stdlib resolve tests out from resolve directory

This commit is contained in:
Dmitriy Novozhilov
2020-02-12 12:37:21 +03:00
parent 90021f3ece
commit f495c4e215
242 changed files with 140 additions and 138 deletions
@@ -0,0 +1,7 @@
fun box(): String = "OK"
fun main(args: Array<String>) {
if (box() == "OK") {
throw Exception("Hello")
}
}