mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00
11 lines
147 B
ObjectPascal
11 lines
147 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode fpc}
|
|
|
|
var c: char;
|
|
p: pchar;
|
|
begin
|
|
{ Don't allow this in fpc modes, in delphi it should be allowed }
|
|
p := pchar(c);
|
|
end.
|