fpc/tests/webtbf/tw17455.pp
Jonas Maebe bd0567563c * don't crash in {$x-} mode if a call cannot be resolved due to an error
in the expression (mantis #17455)

git-svn-id: trunk@16061 -
2010-09-29 12:11:22 +00:00

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.