* Mantis #34691 is fixed by previous change regarding property access list

git-svn-id: trunk@40657 -
This commit is contained in:
svenbarth 2018-12-26 11:26:04 +00:00
parent 539ed761ba
commit 60adebfe28
2 changed files with 29 additions and 0 deletions

1
.gitattributes vendored
View File

@ -14739,6 +14739,7 @@ tests/webtbf/tw3395.pp svneol=native#text/plain
tests/webtbf/tw3395a.pp svneol=native#text/plain
tests/webtbf/tw34355.pp svneol=native#text/pascal
tests/webtbf/tw3450.pp svneol=native#text/plain
tests/webtbf/tw34691.pp svneol=native#text/pascal
tests/webtbf/tw3473.pp svneol=native#text/plain
tests/webtbf/tw3480.pp svneol=native#text/plain
tests/webtbf/tw3480a.pp svneol=native#text/plain

28
tests/webtbf/tw34691.pp Normal file
View File

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