mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-10 22:09:18 +02:00
* old syntax
git-svn-id: trunk@5173 -
This commit is contained in:
parent
b3ac0f5d98
commit
3242e33f17
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
@ -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<real>;
|
||||
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user