mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
15 lines
183 B
ObjectPascal
15 lines
183 B
ObjectPascal
{$MODE OBJFPC}
|
|
program test;
|
|
|
|
type
|
|
TDummy = record end;
|
|
|
|
function Foo(): TDummy;
|
|
begin
|
|
Result := Default(TDummy);
|
|
end; // Fatal: Internal error 2010053111
|
|
|
|
begin
|
|
Foo();
|
|
end.
|