* forgot to commit tests in r42329

git-svn-id: trunk@42330 -
This commit is contained in:
svenbarth 2019-07-05 15:30:53 +00:00
parent 2e4d8e36a5
commit 433f07c407
3 changed files with 36 additions and 0 deletions

2
.gitattributes vendored
View File

@ -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
tests/webtbs/tw35670a.pp Normal file
View File

@ -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
tests/webtbs/tw35670b.pp Normal file
View File

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