Added test for Mantis #15683 which seems to be fixed already.

git-svn-id: trunk@21450 -
This commit is contained in:
svenbarth 2012-06-01 12:01:18 +00:00
parent a9e6a732c7
commit a7f95382b6
2 changed files with 21 additions and 0 deletions

1
.gitattributes vendored
View File

@ -12283,6 +12283,7 @@ tests/webtbs/tw15610.pp svneol=native#text/plain
tests/webtbs/tw15619.pp svneol=native#text/plain
tests/webtbs/tw15668.pp svneol=native#text/pascal
tests/webtbs/tw1567.pp svneol=native#text/plain
tests/webtbs/tw15683.pp svneol=native#text/pascal
tests/webtbs/tw15690.pp svneol=native#text/plain
tests/webtbs/tw15693.pp svneol=native#text/plain
tests/webtbs/tw15694.pp svneol=native#text/plain

20
tests/webtbs/tw15683.pp Normal file
View File

@ -0,0 +1,20 @@
program tw15683;
{$mode objfpc}
type
generic GSomething<TSomeType> = class
procedure Method(i :Integer);
procedure Method(s :TSomeType);
end;
procedure GSomething.Method(i: Integer);
begin
end;
procedure GSomething.Method(s: TSomeType);
begin
end;
begin
end.