fpc/tests/th010018.pp
pierre 38664fd7d3 * added two small tests
iocheck inside iocheck
    enums inside objects
1998-10-22 16:41:10 +00:00

14 lines
134 B
ObjectPascal

unit th010018;
interface
type
rec=object
i : longint;
nrs : (one,two,three);
end;
var
brec : rec;
implementation
end.