mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 11:48:10 +02:00
14 lines
151 B
ObjectPascal
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.
|