+ tests for web bugs 3183 and 4403

git-svn-id: trunk@2170 -
This commit is contained in:
Jonas Maebe 2006-01-04 22:47:28 +00:00
parent cbaa100654
commit 21d51d8815
3 changed files with 28 additions and 0 deletions

2
.gitattributes vendored
View File

@ -5884,6 +5884,7 @@ tests/webtbf/tw3116.pp svneol=native#text/plain
tests/webtbf/tw3126.pp svneol=native#text/plain
tests/webtbf/tw3145.pp svneol=native#text/plain
tests/webtbf/tw3183.pp svneol=native#text/plain
tests/webtbf/tw3183b.pp svneol=native#text/plain
tests/webtbf/tw3186.pp svneol=native#text/plain
tests/webtbf/tw3218.pp svneol=native#text/plain
tests/webtbf/tw3241.pp svneol=native#text/plain
@ -6423,6 +6424,7 @@ tests/webtbs/tw3176.pp svneol=native#text/plain
tests/webtbs/tw3179.pp svneol=native#text/plain
tests/webtbs/tw3182.pp svneol=native#text/plain
tests/webtbs/tw3183.pp svneol=native#text/plain
tests/webtbs/tw3183a.pp svneol=native#text/plain
tests/webtbs/tw3184.pp svneol=native#text/plain
tests/webtbs/tw3185.pp svneol=native#text/plain
tests/webtbs/tw3190.pp svneol=native#text/plain

14
tests/webtbf/tw3183b.pp Normal file
View File

@ -0,0 +1,14 @@
{ %fail }
{$mode objfpc}
type
ta = interface
function a: longint;
end;
tb = interface(ta)
function a: ansistring;
end;
begin
end.

12
tests/webtbs/tw3183a.pp Normal file
View File

@ -0,0 +1,12 @@
{$mode delphi}
type
ta = interface
function a: longint;
end;
tb = interface(ta)
function a: ansistring;
end;
begin
end.