fpc/tests/ts010018.pp
pierre 38664fd7d3 * added two small tests
iocheck inside iocheck
    enums inside objects
1998-10-22 16:41:10 +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.