fpc/tests/webtbs/tw8258a.pp
Jonas Maebe f38d29cfab * optimized previous patch for "byte in set" (Thorsten Engler)
* fixed storing/loading of setdefs to/from ppu + test (Thorsten Engler)
  * fixed ppudump for new setdef format in ppus

git-svn-id: trunk@6363 -
2007-02-07 20:22:29 +00:00

17 lines
192 B
ObjectPascal

program SetsFUBAR;
uses
SysUtils;
var
FCommentChars: TSysCharSet;
s: string;
begin
s := '#';
FCommentChars := [';','#'];
if not (s[1] in FCommentChars) then
halt(1);
end.