Advertisement
Guest User

Untitled

a guest
Aug 19th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.20 KB | None | 0 0
  1. {$mode delphi}
  2.  
  3.   TGeneric1<T1> = class
  4.     function Sample: T1; virtual; abstract;
  5.   end;
  6.  
  7.   TGeneric2<T1> = class(TGeneric1<TGeneric1<T1>>)
  8.     function Sample2: T1; virtual; abstract;
  9.   end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement