mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:48:11 +02:00
14 lines
169 B
ObjectPascal
14 lines
169 B
ObjectPascal
{ Old file: tbs0135.pp }
|
|
{ Unsupported subrange type construction. OK 0.99.6 }
|
|
|
|
program test;
|
|
const
|
|
A = 0;
|
|
B = 1;
|
|
C = 2;
|
|
|
|
type D = A..C;
|
|
|
|
begin
|
|
end.
|