mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
13 lines
165 B
ObjectPascal
13 lines
165 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode macpas}
|
|
{$extendedsyntax off}
|
|
|
|
program crash;
|
|
var
|
|
thePStr: string[ 255];
|
|
begin
|
|
System.Move
|
|
( thePStr, MenuPtr^, Length( thePStr) + 1)
|
|
end.
|