Minor. Move tests

This commit is contained in:
Denis Zharkov
2015-11-12 11:40:59 +03:00
parent 83bf5daf7f
commit abf7ae547e
9 changed files with 57 additions and 57 deletions
@@ -0,0 +1,10 @@
fun box(): String {
try {
throw Throwable("OK", null)
} catch (t: Throwable) {
if (t.cause != null) return "fail 1"
return t.message!!
}
return "fail 2"
}