fpc/tests/tbf/tb0218.pp
florian c6ffbe9eda * support string constants > 255 chars
* don't cut off anymore string constants silently at 255 chars

git-svn-id: trunk@14789 -
2010-01-24 09:28:46 +00:00

41 lines
1.1 KiB
ObjectPascal

{ %fail }
{ Old file: tbs0229.pp }
{ consts > 255 are truncated (should work in -S2,-Sd) OK 0.99.11 (PFV) }
{ this is not true anymore because it can lead silently to bugs,
it is allowed now in $H+ mode else it causes an error (FK) }
{$mode objfpc}
{$X-}
const
CRLF = #13#10;
c =
'1-----------------'+CRLF+
'2/PcbDict 200 dict'+CRLF+
'3PcbDicljkljkljk b'+CRLF+
'4PcbDict /DictMaix'+CRLF+
'5% draw a pin-poll'+CRLF+
'6% get x+CRLF+ y s'+CRLF+
'7/thickness exch h'+CRLF+
'8gsave x y transls'+CRLF+
'9---------jljkljkl'+crlf+
'10----------2jkljk'+crlf+
'11----------jkllkk'+crlf+
'eeeeeeeeeeeeeeeeee'+crlf+
'2-----------------'+CRLF+
'2/PcbDict 200 dice'+CRLF+
'END____.XXXXXxjk b'+CRLF+
'4PcbDict /DictMaix'+CRLF+
'5% draw a pin-poll'+CRLF+
'6% get x+CRLF+ y s'+CRLF+
'7/thickness exch h'+CRLF+
'8gsave x y transls'+CRLF+
'9---------jljkljkl'+crlf+
'10----------2jkljk'+crlf+
'11----------jkllkk'+crlf+
'eeeeeeeeeeeeeeeeee12';
begin
write(c);
end.