mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00

* 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 -
19 lines
140 B
ObjectPascal
19 lines
140 B
ObjectPascal
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
unit usprot2;
|
|
|
|
interface
|
|
|
|
uses
|
|
usprot1;
|
|
|
|
type
|
|
tchild1 = class(tbase)
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|