mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 19:08:07 +02:00
16 lines
194 B
ObjectPascal
16 lines
194 B
ObjectPascal
{ %NORUN }
|
|
program tb0709;
|
|
|
|
{$mode objfpc}
|
|
{ ensure that function reference are disabled }
|
|
{$modeswitch functionreferences-}
|
|
|
|
type
|
|
Reference = LongInt;
|
|
|
|
TTest = type Reference;
|
|
|
|
begin
|
|
|
|
end.
|