fpc/tests/webtbs/tw3183a.pp
Jonas Maebe 21d51d8815 + tests for web bugs 3183 and 4403
git-svn-id: trunk@2170 -
2006-01-04 22:47:28 +00:00

13 lines
138 B
ObjectPascal

{$mode delphi}
type
ta = interface
function a: longint;
end;
tb = interface(ta)
function a: ansistring;
end;
begin
end.