浏览代码

Added test if Try-Block is possible without "catch"-part

Ronny Otto 11 年之前
父节点
当前提交
d704f1b895
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      tests/framework/language/try_01.bmx

+ 12 - 0
tests/framework/language/try_01.bmx

@@ -0,0 +1,12 @@
+Rem
+	This test checks:
+	- if try without "catch" is possible
+End Rem
+SuperStrict
+
+Import BRL.StandardIO
+
+
+Try
+	print "should get printed"
+End Try