fpc/tests/test/twrstr2.pp
2007-05-14 17:34:01 +00:00

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.