pascalabcnet/TestSuite/formatter_tests/input/Program1339.pas

7 lines
211 B
ObjectPascal
Raw Permalink Normal View History

2018-10-03 19:28:41 +03:00
begin
var x1: Action0:=()->exit;
var x2: Func0<byte> := () -> 0;
var y1: Action0 := ()->begin exit end;
var y2: Func0<byte> := () -> begin Result := 0; end;
end.