fpc/tests/webtbf/uw6922.pp
peter 22657a363b * pass context class to searchsym_in_class to fix the visibility
of protected members called from a named class in a child class
    that also has the visibility for those protected members

git-svn-id: trunk@4384 -
2006-08-07 19:10:11 +00:00

24 lines
228 B
ObjectPascal

unit uw6922;
{$ifdef fpc}{$mode objfpc}{$H+}{$endif}
interface
type
{ TA }
TA = class
private
FT: string;
protected
property T: string read FT write FT;
end;
TB = class(TA)
end;
implementation
end.