Browse Source

+ added (fixed in r5682)

git-svn-id: trunk@5722 -
Jonas Maebe 18 years ago
parent
commit
b2da1c43e7
2 changed files with 21 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 20 0
      tests/webtbf/tw6420.pp

+ 1 - 0
.gitattributes

@@ -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 - 0
tests/webtbf/tw6420.pp

@@ -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.