mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 22:23:43 +02:00

* ensure that the correct amount of parameters is used for an operator overload (this is essentially important for unary operators that were declared with two arguments) ........ * fix for Mantis #35348: correctly handle symbols that aren't parameter types (e.g. default values) + added test ........ git-svn-id: branches/fixes_3_2@47587 -
14 lines
138 B
ObjectPascal
14 lines
138 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tb0269;
|
|
|
|
{$mode objfpc}
|
|
|
|
operator + (aArg1: TObject; aArg2: TObject; aArg3: TObject): TObject;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|