Browse Source

* outofmemory exception bug

peter 24 năm trước cách đây
mục cha
commit
9ac5af24c1
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 12 0
      tests/tbs/tb0357.pp

+ 12 - 0
tests/tbs/tb0357.pp

@@ -0,0 +1,12 @@
+{$ifdef fpc}{$MODE OBJFPC}{$endif}
+uses sysutils;
+var
+  p:pointer;
+begin
+  try
+    getmem(p, 1000000000);
+  except
+    on eoutofmemory do writeln('out of memory!');
+  end;
+  writeln('program lasts...')
+end.