pascalabcnet/TestSuite/units/u_defaultparams2.pas

6 lines
97 B
ObjectPascal
Raw Permalink Normal View History

2018-10-04 13:14:46 +03:00
unit u_defaultparams2;
function f(x: byte := default(byte)) := x;
begin
assert(f = 0);
end.