mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 14:08:02 +02:00
17 lines
271 B
ObjectPascal
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.
|
|
|