diff --git a/.gitattributes b/.gitattributes index 9283581843..27fbe58003 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7577,7 +7577,6 @@ tests/webtbs/tw7329.pp svneol=native#text/plain tests/webtbs/tw7372.pp svneol=native#text/plain tests/webtbs/tw7379.pp svneol=native#text/plain tests/webtbs/tw7391.pp svneol=native#text/plain -tests/webtbs/tw7422.pp svneol=native#text/plain tests/webtbs/tw7425.pp svneol=native#text/plain tests/webtbs/tw7440.pp svneol=native#text/plain tests/webtbs/tw7446.pp svneol=native#text/plain diff --git a/tests/webtbs/tw7422.pp b/tests/webtbs/tw7422.pp deleted file mode 100644 index d02ef160e2..0000000000 --- a/tests/webtbs/tw7422.pp +++ /dev/null @@ -1,19 +0,0 @@ -{$mode objfpc} -type generic PListNode<_T> = ^specialize TListNode; - generic TListNode<_T> = class(TObject) - Data: _T; - Next,Prev: PListNode; - end; - generic TList<_T> = class(TObject) - First,Last: PListNode; - procedure add(item: _T); - end; - -procedure TList.add(item: _T); -begin -end; - -type TMyList = specialize TList; - -begin -end. \ No newline at end of file