fpc/tests/webtbs/tw4566.pp
florian 119bc9f51e + line endings fixed
* properties set

git-svn-id: trunk@7080 -
2007-04-09 09:06:07 +00:00

15 lines
301 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 4566 }
{ Submitted by "Vincent Snijders" on 2005-12-04 }
{ e-mail: vsnijders@quicknet.nl }
program bug4566;
{$mode objfpc}{$H+}
var
s: string;
begin
//accidently use #1310 instead of #13#10
s := 'Message Text' + #1310 + #1310 + 'More Text';
end.