Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 2.7.0
-
None
-
7c74482ad361ee81f87c8ed039b789807934f0e7
Description
struct Foo { int foo; }; template<class T> struct Outer { struct Nested { const T &operator*() { return t; } T t; }; }; void bug() { Outer<Foo>::Nested nested; (*nested).foo; // Not highlighted, can't run find usages }
Placing the caret on this line highlights both appearances of foo (the declaration and the usage) but doesn't allow Find Usages.
Running Find Usages on the declaration does find this usage.