fpc/tests/test/usprot1.pp
Jonas Maebe e9f4b095e1 + explanation for the parameters of is_visible_for_object
* fixed accessibility checking for strict_protected (the class
    in which the access occurs also has to be related to the
    objectdef of which a symbol is accessed) + test

git-svn-id: trunk@22565 -
2012-10-06 16:28:27 +00:00

22 lines
213 B
ObjectPascal

{$ifdef fpc}
{$mode delphi}
{$endif}
unit usprot1;
interface
type
tbase = class
strict protected
procedure pmethod; virtual; overload;
end;
implementation
procedure tbase.pmethod;
begin
end;
end.