fpc/tests/tbs/tb0056.pp
2000-11-30 22:38:14 +00:00

17 lines
271 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.