summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/tbs/tb0494.pp
blob: 8863fb911fbb91be0b35718f84b62bc060091134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ the test checks only if the syntax is possible }
var
  ca : array[0..1000] of char;
  p1 : pchar;

begin
  p1:=nil;
  if (ca-p1)=0 then
    halt(1); 
  p1:=ca;
end.