mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 16:13:48 +02:00
13 lines
172 B
ObjectPascal
13 lines
172 B
ObjectPascal
uses th010018;
|
|
|
|
var
|
|
arec : rec;
|
|
|
|
begin
|
|
arec.nrs:=one;
|
|
if arec.nrs<>one then
|
|
begin
|
|
Writeln('Error with enums inside objects');
|
|
Halt(1);
|
|
end;
|
|
end. |