fpc/tests/test/toperator12.pp
paul 0c9b40acb7 compiler: record operators
- allow operator also if return type match the structure type (before at least one parameter had to match)
  - search both operands symbol tables for a suitable assignment operator
  - test
based on patch of Blaise Thorn (issue #0018490)

git-svn-id: trunk@16762 -
2011-01-14 02:25:48 +00:00

25 lines
298 B
ObjectPascal

program toperator12;
{$ifdef FPC}
{$mode Delphi}
{$endif}
type
R = record
F: Integer;
class operator Implicit(const v: integer): R;
end;
class operator R.Implicit(const v: integer): R;
begin
Result.F := v;
end;
var
x: R;
begin
x := 42;
if x.F <> 42 then
halt(1);
end.