fpc/tests/webtbs/tw3721.pp
florian 02cec59ccf * trailing white space removed
git-svn-id: trunk@13421 -
2009-07-22 16:56:05 +00:00

13 lines
144 B
ObjectPascal

{ %opt=-gh}
uses sysutils;
var ps : pstring;
begin
HaltOnNotReleased := true;
ps:=newstr('TEST');
writeln(ps^);
disposestr(ps);
end.