fpc/tests/tbs/tb0056.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

16 lines
270 B
ObjectPascal

{ Old file: tbs0063.pp }
{ shows problem with ranges in sets for variables OK 0.99.7 (PFV) }
{ may also crash/do weird error messages with the compiler }
var
min: char;
max: char;
i: char;
begin
min:='c';
max:='z';
if i in [min..max] then
Begin
end;
end.