fpc/tests/tbf0049.pp
1998-11-23 23:44:50 +00:00

12 lines
166 B
ObjectPascal

type
days = (Mon,Tue,Wed,Thu,Fri,Sat,Sun);
weekend = Sat..Sun;
var
w : weekend;
begin
w:=5;
{$message the line before should produce an error }
end.