blob: 34b166cc74f7f567fa09af46790dc02e34b7984d (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ Source provided for Free Pascal Bug Report 3968 }
{ Submitted by "C Western" on 2005-05-14 }
{ e-mail: mftq75@dsl.pipex.com }
unit uw3968;
interface
type
Tabcde = (a=0,b,c,d,e);
Tabc = a..c;
implementation
end.
|