False positive for W535

Version: 2021.10

Example when we have enumerated type and we disable one element:

TCarSupported = (csAudi, csBMW, csMercedes, {csFord, (Note: Temporary disabled)} csPorsche);

procedure SomeMethod(const ACarSupported: TCarSupported);
begin
    case ACarSupported of
      // [FixInsight Warning]: W535 Enumerated constant(s) missing in case statement: 'csFord'

      csAudi:
          ; //Some Code

      csBMW, csMercedes:
          ; //Some Code

      csPorsche:
          ; //Some Code
   end;
end;

Note: This does not happen every time. Another condition must be met for an error to occur.