mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 20:49:09 +02:00
Added test for Mantis #15683 which seems to be fixed already.
git-svn-id: trunk@21450 -
This commit is contained in:
parent
a9e6a732c7
commit
a7f95382b6
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
20
tests/webtbs/tw15683.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user