Incompatibility with TRttiContext
With the latest version the following project does not compile any longer:
program Project1;
uses
Rtti;
var
lContext: TRttiContext;
begin
lContext := TRttiContext.Create;
lContext.GetType(TObject.ClassInfo);
end.