mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:28:05 +02:00
17 lines
139 B
ObjectPascal
17 lines
139 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tfuncref30;
|
|
|
|
{$modeswitch functionreferences}
|
|
|
|
type
|
|
reference = record
|
|
end;
|
|
|
|
var
|
|
somevar: reference;
|
|
|
|
begin
|
|
|
|
end.
|