Am 16.12.2020 um 15:01 schrieb Blaise--- via fpc-devel:
The patch http://hg.blaise.ru/public/fpc/rev/0a8aff8d8273 (attached)
fixes the following:
---8<---
{$Mode Delphi}
type R = record
var X: Integer;
function Foo: Integer;
end;
function R.Foo: Integer;
begin
result := X
e
The patch http://hg.blaise.ru/public/fpc/rev/0a8aff8d8273 (attached) fixes the
following:
---8<---
{$Mode Delphi}
type R = record
var X: Integer;
function Foo: Integer;
end;
function R.Foo: Integer;
begin
result := X
end;
var F: function : Integer of object;