Browse Source

* forgot to commit tests in r42329

git-svn-id: trunk@42330 -
svenbarth 6 years ago
parent
commit
433f07c407
3 changed files with 36 additions and 0 deletions
  1. 2 0
      .gitattributes
  2. 17 0
      tests/webtbs/tw35670a.pp
  3. 17 0
      tests/webtbs/tw35670b.pp

+ 2 - 0
.gitattributes

@@ -16666,6 +16666,8 @@ tests/webtbs/tw35533.pp svneol=native#text/pascal
 tests/webtbs/tw3554.pp svneol=native#text/plain
 tests/webtbs/tw3564.pp svneol=native#text/plain
 tests/webtbs/tw3567.pp svneol=native#text/plain
+tests/webtbs/tw35670a.pp svneol=native#text/pascal
+tests/webtbs/tw35670b.pp svneol=native#text/pascal
 tests/webtbs/tw3572.pp svneol=native#text/plain
 tests/webtbs/tw3573.pp svneol=native#text/plain
 tests/webtbs/tw35735.pp svneol=native#text/pascal

+ 17 - 0
tests/webtbs/tw35670a.pp

@@ -0,0 +1,17 @@
+{ %NORUN }
+
+program tw35670a;
+
+{$mode objfpc}
+
+generic procedure DoThis<T>(msg: T);
+begin
+end;
+
+procedure DoThis(msg: TObject);
+begin
+end;
+
+begin
+
+end.

+ 17 - 0
tests/webtbs/tw35670b.pp

@@ -0,0 +1,17 @@
+{ %NORUN }
+
+program tw35670b;
+
+{$mode delphi}
+
+procedure DoThis<T>(msg: T);
+begin
+end;
+
+procedure DoThis(msg: TObject);
+begin
+end;
+
+begin
+
+end.