mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 22:47:59 +02:00
16 lines
129 B
ObjectPascal
16 lines
129 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode fpc}
|
|
|
|
procedure test(s: string);
|
|
begin
|
|
halt(0);
|
|
end;
|
|
|
|
var
|
|
l: longint;
|
|
begin
|
|
l := 'abcd';
|
|
test(l);
|
|
end.
|