fpc/tests/test/units/system/tassert7.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

23 lines
282 B
ObjectPascal

program tassert7;
{$C+}
{$mode objfpc}
uses sysutils;
procedure Success;
Begin
WriteLn('Success!');
halt;
end;
Begin
Write('Try..catch of assertion...');
try
assert(false);
except
on EAssertionFailed do Success;
end;
WriteLn('Failed!');
Halt(1);
end.