I connected the SuperObject module to the project to parse JSON.
procedure TForm1.Button1Click(Sender: TObject); var Json: ISuperObject; begin Json := SO(Memo1.Text); end; When compiling this error:
[DCC Error] Generics.Collections.pas (1679): E2250 [DCC Fatal Error] Generics.Defaults.pas (111): F2063 Could not compile used unit 'Generics.Collections'
function TDictionary<TKey, TValue>.TPairEnumerator.DoGetCurrent. Try to make a build project, most likely - Delphi will show the line in the module itself, which can not compile. Perhaps this Generics.Collections is not from the standard delivery. - kami