fpc/tests/webtbf/tw22343a.pp
Jonas Maebe aad3ce960a * give an error when trying to give a parameter of a non-simple type a
default value (mantis #22343)
  * give an error when specifying an invalid default value (e.g. a
    floating point number for a longint parameter)

git-svn-id: trunk@22021 -
2012-08-06 20:13:20 +00:00

17 lines
233 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ %fail }
{$IFDEF FPC}
{$MODE DELPHI}
{$ENDIF}
type
TWrapper = record end;
procedure TestProcedure(const wr: TWrapper = 0);
{ This shouldnt be allowed; try also 0.0, '0', nil, False, reNone, etc. }
begin
end;
begin
end.