mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 12:49:33 +02:00
* let it crash under all platforms
This commit is contained in:
parent
e9aaebe873
commit
ea5771fd28
@ -1,4 +1,4 @@
|
||||
{$MODE OBJFPC }
|
||||
{$ifdef fpc}{$MODE OBJFPC }{$endif}
|
||||
type
|
||||
TestRec = record
|
||||
fString : AnsiString;
|
||||
@ -9,7 +9,7 @@ type
|
||||
|
||||
function GetGroupInfo: TestRec;
|
||||
begin
|
||||
fillchar(Result, Sizeof(Result), 0);
|
||||
// fillchar(Result, Sizeof(Result), 0);
|
||||
Result.fRetAddr := 0;
|
||||
end;
|
||||
|
||||
@ -18,6 +18,11 @@ begin
|
||||
Result := GetGroupInfo;
|
||||
end;
|
||||
|
||||
procedure p;
|
||||
begin
|
||||
SelectGroup;
|
||||
end;
|
||||
|
||||
begin
|
||||
p;
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user