summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/tbs/tb0233.pp
blob: 8e6c978697842383bbf256b63c12177d669546d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ Old file: tbs0273.pp }
{ small array pushing to array of char procedure is wrong OK 0.99.13 (PFV) }

Program CharArr;

Var CharArray : Array[1..4] Of Char;

    S : String;

Begin
 CharArray:='BUG?';
 S:=CharArray;
 WriteLn(S);         { * This is O.K. * }
 WriteLn(CharArray); { * GENERAL PROTECTION FAULT. * }
 if CharArray<>'BUG?' then
   begin
     Writeln('Error comparing charaay to constant string');
     Halt(1);
   end;
End.