+ added (fixed in r5682)

git-svn-id: trunk@5722 -
This commit is contained in:
Jonas Maebe 2006-12-26 18:25:04 +00:00
parent 66a07eba3e
commit b2da1c43e7
2 changed files with 21 additions and 0 deletions

1
.gitattributes vendored
View File

@ -6984,6 +6984,7 @@ tests/webtbf/tw4893d.pp svneol=native#text/plain
tests/webtbf/tw4893e.pp svneol=native#text/plain
tests/webtbf/tw4911.pp svneol=native#text/plain
tests/webtbf/tw4913.pp -text
tests/webtbf/tw6420.pp svneol=native#text/plain
tests/webtbf/tw6631.pp svneol=native#text/plain
tests/webtbf/tw6686.pp svneol=native#text/plain
tests/webtbf/tw6796.pp svneol=native#text/plain

20
tests/webtbf/tw6420.pp Normal file
View File

@ -0,0 +1,20 @@
{ %fail }
{$mode delphi}
type
IA = interface
procedure B(out c: Integer);
end;
TA = class(TInterfacedObject, IA)
procedure B(var c: Integer);
end;
procedure TA.B(var c: Integer);
begin
end;
begin
end.