Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
Qt Creator 4.2.0-rc1
Description
Both completion and highlighting are bad.
template<class T> struct Temp1 { T var; }; template <class T> struct Temp2 { void func() { t1.var = 42; } // var is not highlighted and cannot be completed Temp1<T> t1; };
In my real use-case even t1 itself is in some occurrences highlighted as a member, in some as a local variable and in some not at all...