mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 08:49:33 +02:00
+ 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:
parent
4ff597afae
commit
84a18e57bc
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
8
tests/tbf/tb0249.pp
Normal file
@ -0,0 +1,8 @@
|
||||
{ %FAIL }
|
||||
|
||||
program tb0249;
|
||||
var
|
||||
p: PByte;
|
||||
begin
|
||||
p := nil - 5;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user