+ 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 -
This commit is contained in:
nickysn 2014-07-18 12:09:27 +00:00
parent 4ff597afae
commit 84a18e57bc
2 changed files with 9 additions and 0 deletions

1
.gitattributes vendored
View File

@ -9618,6 +9618,7 @@ tests/tbf/tb0245.pp svneol=native#text/pascal
tests/tbf/tb0246.pp svneol=native#text/pascal
tests/tbf/tb0247.pp svneol=native#text/pascal
tests/tbf/tb0248.pp svneol=native#text/pascal
tests/tbf/tb0249.pp svneol=native#text/pascal
tests/tbf/ub0115.pp svneol=native#text/plain
tests/tbf/ub0149.pp svneol=native#text/plain
tests/tbf/ub0158a.pp svneol=native#text/plain

8
tests/tbf/tb0249.pp Normal file
View File

@ -0,0 +1,8 @@
{ %FAIL }
program tb0249;
var
p: PByte;
begin
p := nil - 5;
end.