fpc/tests/webtbf/tw6922.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

36 lines
452 B
ObjectPascal

{ %fail }
{$ifdef fpc}{$mode objfpc}{$H+}{$endif}
uses uw6922;
type
{ TC }
TC=class(TA)
public
procedure Test;
end;
{ TC }
procedure TC.Test;
var
B: TB;
begin
T := 'Test1'; // allowed, because it is a descendant
B := TB.Create;
B.T := 'Test2'; // should not be allowed
writeln(B.T);
B.Free;
end;
var
c: TC;
begin
c := TC.Create;
c.T := 'Test3'; // allowed, because it is in the same 'unit'
c.Test;
c.Free;
end.