mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
21 lines
224 B
ObjectPascal
21 lines
224 B
ObjectPascal
unit uunit1;
|
|
|
|
interface
|
|
|
|
var
|
|
testvar : longint;
|
|
|
|
implementation
|
|
|
|
uses
|
|
erroru;
|
|
|
|
initialization
|
|
testvar:=1234567;
|
|
finalization
|
|
if testvar<>1234567 then
|
|
do_error(1001)
|
|
else
|
|
halt(0);
|
|
end.
|