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

scanner.pas, parse_compiler_expr.read_factor: + allow "<>" after "declared" (handle "<>" operator specially) + count "," to get correct amount of type parameters + check together with the count string for symbols + correctly handle dummy symbols + added tests git-svn-id: trunk@23544 -
28 lines
217 B
ObjectPascal
28 lines
217 B
ObjectPascal
unit ugeneric93a;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
type
|
|
TTestDelphi<T> = class
|
|
|
|
end;
|
|
|
|
TTestDelphi<T, S, R> = class
|
|
|
|
end;
|
|
|
|
TTest2Delphi = class
|
|
|
|
end;
|
|
|
|
TTest2Delphi<T, S> = class
|
|
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|