fpc/tests/test/toperator10.pp
paul d62ad56b74 tests: forgot to add { %fail} directive
git-svn-id: trunk@16628 -
2010-12-24 07:36:01 +00:00

20 lines
239 B
ObjectPascal

{ %fail}
program toperator10;
{$mode delphi}
type
TFoo = record
F: Integer;
end;
// don't allow class operator declaration outside the class
class operator Add(A, B: TFoo): TFoo;
begin
Result.F := A.F + B.F;
end;
begin
end.