fpc/tests/ts/ts010018.pp
1999-12-02 17:37:24 +00:00

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.