fpc/bugs/bug0033.pp
1998-03-25 11:26:49 +00:00

14 lines
151 B
ObjectPascal

var
p1 : pchar;
p2 : array[0..10] of char;
s : string;
c : char;
begin
p1:='c';
s:='c';
{ this isn't allowed
p1:=c;
}
end.