fpc/tests/tbs/tb0318.pp
2002-09-07 15:40:30 +00:00

15 lines
147 B
ObjectPascal

const
nl=#10;
type
cs=set of char;
function p(c:cs):boolean;
begin
p:=(#10 in c);
end;
begin
if p([#1..#255]-[nl]) then
halt(1);
end.