mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 20:51:17 +02:00
13 lines
154 B
ObjectPascal
13 lines
154 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}{$H+}
|
|
|
|
type
|
|
generic TOuter<T> = class(TObject)
|
|
public type
|
|
generic TInner<U> = class(TObject)
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
end.
|