Compilation error after update the compiler source
After I updated the compiler source this sample don't compile anymore. It raise the error: 'Variable identifier expected'.
unit Error;
{$mode Delphi}
interface
type
TMyClass = class
end;
procedure Test;
implementation
uses System.Rtti;
procedure Test;
var
Valor: TValue;
begin
TValue.Make(nil, TMyClass.ClassInfo, Valor);
end;
end.