fpc/tests/tbs0033.pp
1998-12-02 13:05:01 +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.