mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-03 08:00:43 +01: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.
|