fpc/bugs/bug0001.pp
1998-03-25 11:26:49 +00:00

9 lines
149 B
ObjectPascal

program smalltest;
const
teststr : string = ' '#9#255#0;
begin
writeln(teststr);
teststr := 'gaga';
writeln(teststr);
end.