mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:08:11 +02:00

pgenutil.pas: generate_specialization: + instead of giving an internal error if "symname" is empty and "tt" is "nil" we now do an error recovery by parsing the specialization parameters and returning an errordef (this happens if the "generic" type before the "<" is not found) * handle "<>" specially by giving an approbiate error message (both when doing a recovery/parsing a generic and during normal specialization) parse_generic_parameters: * set the "block_type" to "bt_type" to be on the safe side * don't continue with inspecting the def (especially hard typecasting) if the found def is not an "objectdef" Added tests. git-svn-id: trunk@23344 -
11 lines
118 B
ObjectPascal
11 lines
118 B
ObjectPascal
{ %FAIL }
|
|
|
|
{$MODE DELPHI}
|
|
|
|
type
|
|
SmallWrapper<T> = class end;
|
|
Wrapper<T: SmallWrapper<>> = record end;
|
|
|
|
begin
|
|
end.
|