mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 12:07:57 +02:00
14 lines
171 B
ObjectPascal
14 lines
171 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
|
|
program Project1;
|
|
type
|
|
Tbar = type class
|
|
f:integer;
|
|
end;
|
|
|
|
// tabc = specialize TBar<integer>; // Internal error 2012101001
|
|
|
|
begin
|
|
end.
|