fpc/tests/webtbs/tw29321.pp
svenbarth 61b12af82b Fix for Mantis #29321.
pexpr.pas, postfixoperators:
  * also handle type helpers for static arrays

+ added test

git-svn-id: trunk@32845 -
2016-01-04 22:02:24 +00:00

25 lines
272 B
ObjectPascal

{ %NORUN }
program tw29321;
{$mode objfpc}
{$modeswitch typehelpers}
type
TVector = array[0..2] of Single;
TVectorHelper = type helper for TVector
public
procedure Add;
end;
procedure TVectorHelper.Add;
begin
end;
var
v: TVector;
begin
v.Add;
end.