fpc/tests/webtbs/tw5100.pp
Jonas Maebe 0d0766a595 * fixed web bug #6923 (old 5100): count references to private fields
from non-private properties

git-svn-id: trunk@4180 -
2006-07-14 15:34:02 +00:00

38 lines
384 B
ObjectPascal

{ %norun }
{ %OPT=-Sen }
unit tw5100;
{$mode objfpc}{$H+}
interface
type
{ TA }
TA = class
private
FT: string;
protected
property T: string read FT write FT;
end;
TB = class
private
FT: string;
property T: string read FT write FT;
protected
procedure test;
end;
implementation
procedure tb.test;
begin
writeln(t);
end;
end.