Browse Source

+ exception testing

carl 22 years ago
parent
commit
30e5f6934e
1 changed files with 23 additions and 0 deletions
  1. 23 0
      tests/tbs/tb0449.pp

+ 23 - 0
tests/tbs/tb0449.pp

@@ -0,0 +1,23 @@
+{ %NORUN }
+
+
+{$ifdef fpc}
+{$mode objfpc}
+{$endif}
+uses sysutils;
+
+type
+
+  EWbcError = class of Exception;
+  
+  
+Begin
+  raise EwbcError.create('Hello');
+end.
+
+{
+  $Log$
+  Revision 1.1  2003-02-02 13:46:06  carl
+   + exception testing
+
+}