Skip to content
  • Nikolai Kosjar's avatar
    Clang: Add a disabled test for highlighting · 1623af0d
    Nikolai Kosjar authored
    
    
    In the example below, "var" is highlighted as a function, but it should
    be highlighted as a local variable.
    
      struct OtherOperator { void operator()(int); };
      void g(OtherOperator o, int var)
      {
          o(var);
      }
    
    This is due to a libclang bug.
    
    Change-Id: I7c9fcad6f16c25191d31fc330e969ebd282d4869
    Reviewed-by: default avatarDavid Schulz <david.schulz@qt.io>
    1623af0d