mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 02:28:10 +02:00
17 lines
224 B
ObjectPascal
17 lines
224 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
|
|
program test;
|
|
|
|
type
|
|
TMyRecord = record
|
|
end;
|
|
|
|
function printf(format: PChar): Integer; external; varargs;
|
|
|
|
var
|
|
r: TMyRecord;
|
|
begin
|
|
printf('test', r); // Fatal: Internal error 2004102303
|
|
end.
|