mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00

* updated test program to test both named and unnamed enumerations git-svn-id: trunk@10741 -
45 lines
895 B
ObjectPascal
45 lines
895 B
ObjectPascal
// tests writing of high()/low() of enumeration values, i.e.
|
|
// writing and reading of rtti for enums, both "dense" and
|
|
// "sparse" enumerations (different rtti is generated and
|
|
// different code used for generating and reading)
|
|
type
|
|
// "dense" unnamed enumeration
|
|
Txx = set of (_one, _two, _three);
|
|
// "sparse" unnamed enumeration
|
|
Tyy = set of (_zero := 0, _ten := 10, _twenty := 20);
|
|
|
|
// "dense" enumeration
|
|
Tx = (one,two,three);
|
|
Txxx = set of Tx;
|
|
// "sparse" enumeration
|
|
Ty = (zero := 0, ten := 10, twenty := 20);
|
|
Tyyy = set of Ty;
|
|
|
|
procedure error(number : longint);
|
|
begin
|
|
writeln('error ', number);
|
|
halt(number);
|
|
end;
|
|
|
|
var
|
|
x : txxx;
|
|
y : tyyy;
|
|
err : word;
|
|
|
|
_x : txx;
|
|
_y : tyy;
|
|
|
|
begin
|
|
writeln(low(_x));
|
|
writeln(high(_x));
|
|
|
|
writeln(low(_y));
|
|
writeln(high(_y));
|
|
|
|
writeln(low(x));
|
|
writeln(high(x));
|
|
|
|
writeln(low(y));
|
|
writeln(high(y));
|
|
end.
|