fpc/tests/webtbs/tw26271.pp
2014-06-06 14:10:54 +00:00

19 lines
266 B
ObjectPascal

{ %NORUN }
{ %OPT=-gt }
{$MODE OBJFPC}
program tw26271;
type
TRecord = record
Member: Pointer;
end;
function TestFunction(): TRecord;
begin // test.pas(10,1) Error: Can't assign values to const variable
Result := Default(TRecord);
end;
begin
end.