mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-26 15:10:12 +02:00
* Mantis #34691 is fixed by previous change regarding property access list
git-svn-id: trunk@40657 -
This commit is contained in:
parent
539ed761ba
commit
60adebfe28
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -14739,6 +14739,7 @@ tests/webtbf/tw3395.pp svneol=native#text/plain
|
|||||||
tests/webtbf/tw3395a.pp svneol=native#text/plain
|
tests/webtbf/tw3395a.pp svneol=native#text/plain
|
||||||
tests/webtbf/tw34355.pp svneol=native#text/pascal
|
tests/webtbf/tw34355.pp svneol=native#text/pascal
|
||||||
tests/webtbf/tw3450.pp svneol=native#text/plain
|
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/tw3473.pp svneol=native#text/plain
|
||||||
tests/webtbf/tw3480.pp svneol=native#text/plain
|
tests/webtbf/tw3480.pp svneol=native#text/plain
|
||||||
tests/webtbf/tw3480a.pp svneol=native#text/plain
|
tests/webtbf/tw3480a.pp svneol=native#text/plain
|
||||||
|
28
tests/webtbf/tw34691.pp
Normal file
28
tests/webtbf/tw34691.pp
Normal 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.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user