mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 19:29:26 +02:00
+ test for implements with alias
git-svn-id: trunk@10384 -
This commit is contained in:
parent
3bb5a786eb
commit
65e9ad8591
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -7981,6 +7981,7 @@ tests/webtbs/tw10736.pp svneol=native#text/plain
|
||||
tests/webtbs/tw10753.pp svneol=native#text/plain
|
||||
tests/webtbs/tw10753a.pp svneol=native#text/plain
|
||||
tests/webtbs/tw10757.pp svneol=native#text/plain
|
||||
tests/webtbs/tw10768.pp svneol=native#text/plain
|
||||
tests/webtbs/tw10790.pp svneol=native#text/plain
|
||||
tests/webtbs/tw10800.pp svneol=native#text/plain
|
||||
tests/webtbs/tw10807.pp svneol=native#text/plain
|
||||
|
19
tests/webtbs/tw10768.pp
Normal file
19
tests/webtbs/tw10768.pp
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
{$ifdef fpc}{$mode delphi}{$endif}
|
||||
{$apptype console}
|
||||
uses classes;
|
||||
Type
|
||||
|
||||
_AppDomain = interface(IDispatch)
|
||||
end;
|
||||
IJclClrAppDomain = _AppDomain;
|
||||
|
||||
TJclClrAppDomain = class(TInterfacedobject, IJclClrAppDomain)
|
||||
private
|
||||
FDefaultInterface: IJclClrAppDomain;
|
||||
protected
|
||||
property DefaultInterface: IJclClrAppDomain read FDefaultInterface implements IJclClrAppDomain;
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user