Parcourir la source

+ initial version of stack checking routines

carl il y a 24 ans
Parent
commit
2d4afe0bf8
1 fichiers modifiés avec 23 ajouts et 0 suppressions
  1. 23 0
      tests/test/units/system/teststk.pp

+ 23 - 0
tests/test/units/system/teststk.pp

@@ -0,0 +1,23 @@
+{$S+}
+
+{ This tests the stack checking routine on those }
+{ targets which support it.                      }
+
+procedure recursive;
+ var s: string;
+  begin
+    s := 'blahblah';
+    recursive;
+  end;
+
+
+Begin
+  Recursive;
+end.
+
+{
+  $Log$
+  Revision 1.1  2001-12-10 02:41:41  carl
+  + initial version of stack checking routines
+
+}