Explorar o código

+ added (fixed in r5682)

git-svn-id: trunk@5722 -
Jonas Maebe %!s(int64=19) %!d(string=hai) anos
pai
achega
b2da1c43e7
Modificáronse 2 ficheiros con 21 adicións e 0 borrados
  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.