pascalabcnet/TestSuite/defaultparams2.pas

5 lines
74 B
ObjectPascal
Raw Permalink Normal View History

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