mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00

constant values (i.e., anything non-value/const/constref) (mantis #263363) o fixed default parameter value for var-parameter in chmreader git-svn-id: trunk@28016 -
14 lines
115 B
ObjectPascal
14 lines
115 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}
|
|
|
|
procedure test(out x: longint = 0);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
l: longint;
|
|
begin
|
|
test(l);
|
|
end.
|