fpc/tests/test/tclass10a.pp
paul 8a47c5ec8e tests: class sections test by Martin
git-svn-id: trunk@15625 -
2010-07-23 09:00:00 +00:00

19 lines
280 B
ObjectPascal

program tclass10a;
{$ifdef fpc}
{$mode delphi}
{$endif}
// check that "protected" or any other section resets the section type to accept regular fields
type
Tfoo=class
private
type
TF = (one,two,three);
protected
f: TF;
end;
begin
end.