diff --git a/.gitattributes b/.gitattributes index 999dae37cb..dea967ad4e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/tests/webtbs/tw15683.pp b/tests/webtbs/tw15683.pp new file mode 100644 index 0000000000..48fdfee91d --- /dev/null +++ b/tests/webtbs/tw15683.pp @@ -0,0 +1,20 @@ +program tw15683; + +{$mode objfpc} + +type + generic GSomething = 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.