fpc/tests/tbf/tb0249.pp
nickysn 84a18e57bc + added test for the error checking for nil-number; tests already exist for
nil+number and number+nil, so this was the only one missing

git-svn-id: trunk@28235 -
2014-07-18 12:09:27 +00:00

9 lines
70 B
ObjectPascal

{ %FAIL }
program tb0249;
var
p: PByte;
begin
p := nil - 5;
end.