fpc/tests/webtbf/tw6796.pp
florian 5aa65dcec9 + new tests
git-svn-id: trunk@3647 -
2006-05-23 18:54:30 +00:00

33 lines
499 B
ObjectPascal

{ %FAIL }
program intftest;
{$mode objfpc} {$H+}
uses
Classes, SysUtils;
type
{$INTERFACES CORBA}
IMyCorba = interface
['{11111111-1111-1111-1111-111111111111}']
procedure A;
end;
{$INTERFACES DEFAULT}
TMyCorba = class(TObject, IMyCorba)
procedure A;
end;
procedure TMyCorba.A;
begin
WriteLN('A: Who called me ?');
end;
var
I: IUnknown;
C: IMyCorba;
begin
C := TMyCorba.Create;
I := C as IUnknown;
// Supports(C, IUnknown); <- gives atleast some error
end.