fpc/tests/webtbf/tw34691.pp
2018-12-29 19:23:19 +00:00

30 lines
269 B
ObjectPascal

{ %FAIL }
unit tw34691;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
{$M+}
TObjA = class
public
Icon: String;
end;
TObjB = class
FObjA: TObjA;
published
property Icon: String read FObjA.Icon;
end;
implementation
end.