fpc/tests/webtbs/tw17136.pp
Jonas Maebe 50659b7e7f * give an error if a routine definition defines default values for
parameters that do not appear in forward/interface definitions
    (mantis #19434)
  * added test for #17136 already works

git-svn-id: trunk@21524 -
2012-06-07 22:36:39 +00:00

28 lines
329 B
ObjectPascal

{ %opt=-vw -Sew }
{$mode objfpc}
type
TA = class
public
procedure A(X: boolean = false); virtual; abstract;
end;
TB = class(TA)
public
procedure A(X: boolean = true); override;
end;
procedure TB.A(X: boolean = true);
begin
writeln('hi');
end;
var
B: TB;
begin
B := TB.Create;
B.A;
B.Free;
end.