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

12 lines
184 B
ObjectPascal

{ Old file: tbs0154.pp }
{ Subrange types give type mismatch when assigning to OK 0.99.7 (PFV) }
type
week=(mon,tue,wed);
Var
w : week;
w1 : mon..tue;
begin
w1:=w;
end.