Fatal parser error

We get an fatal parser error in FixInsight Pro. Here is an example for Delphi source Code with this error:

program FixInsight_ParserError;

type
  TClass = class
 
  public type
    TInnerEnum = (eOne, eTwo, wThree);
  end;
 
const
  cConstant: set of TClass.TInnerEnum = [
      TClass.TInnerEnum.eOne,
      TClass.TInnerEnum.eTwo,
      TClass.TInnerEnum.wThree
   ];

begin
 
end.
 
It seems to be an error concerning with  sets.
The same error is thrown with:
 
const cTest: set of System.Classes.TSeekOrigin = [];

Is there a way to find out more details about this error so I can exclude it?

Thanks

SelectLine Software