mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
13 lines
143 B
ObjectPascal
13 lines
143 B
ObjectPascal
{ from GPC test suite }
|
|
|
|
Program TruncSt3;
|
|
|
|
Var
|
|
Foo: String [3];
|
|
|
|
begin
|
|
WriteStr (Foo, 'abcdef');
|
|
if Foo <> 'abc' then
|
|
halt(1);
|
|
end.
|