fpc/tests/test/tclass10b.pp
paul c7de16cae1 tests: add type, var sections fail test
git-svn-id: trunk@15647 -
2010-07-27 02:42:54 +00:00

19 lines
271 B
ObjectPascal

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