summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/tbs/tb0446.pp
blob: 987d18ecc2249510de8b25ba4653d9285d1d3015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var
  a : array[0..9] of char;
  pc : pchar;
begin
  a:='1';
  if a=nil then
   halt(1);
  pc:=@a;
  if pc<>'1' then
   halt(1);
  writeln('OK')
end.