mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 18:10:29 +02:00
14 lines
143 B
ObjectPascal
14 lines
143 B
ObjectPascal
{ %fail }
|
|
|
|
type TTest = object
|
|
constructor Init;
|
|
end;
|
|
|
|
constructor TTest.Init;
|
|
begin
|
|
exit (0);
|
|
end;
|
|
|
|
begin
|
|
end.
|