mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 19:28:10 +02:00
14 lines
171 B
ObjectPascal
14 lines
171 B
ObjectPascal
uses ub0313;
|
|
|
|
var
|
|
arec : rec;
|
|
|
|
begin
|
|
arec.nrs:=one;
|
|
if arec.nrs<>one then
|
|
begin
|
|
Writeln('Error with enums inside objects');
|
|
Halt(1);
|
|
end;
|
|
end.
|