fpc/tests/webtbf/tw19213.pp
Jonas Maebe d714eeb84b * give a proper error when a type identifier is missing in a
class operator declaration (mantis #19213)

git-svn-id: trunk@19226 -
2011-09-25 14:38:06 +00:00

17 lines
163 B
ObjectPascal

{ %fail }
unit tw19213;
{$mode objfpc}
interface
implementation
class operator + (a, b: String): Integer;
begin
Result := Length(a) + Length(b);
end;
end.