Browse Source

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

Ronny Otto 11 years ago
parent
commit
d704f1b895
1 changed files with 12 additions and 0 deletions
  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