fpc/tests/webtbs/tw5100a.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

26 lines
219 B
ObjectPascal

{ %norun }
{ %OPT=-Sen }
{ %fail }
unit tw5100a;
{$mode objfpc}{$H+}
interface
type
{ TB }
TB = class
private
FT: string;
property T: string read FT write FT;
end;
implementation
end.