mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 07:58:04 +02:00
12 lines
184 B
ObjectPascal
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.
|