mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 17:19:33 +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
106 B
ObjectPascal
14 lines
106 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tb0270;
|
|
|
|
{$mode objfpc}
|
|
|
|
operator / (aArg1: TObject): TObject;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|