Community
Participate
Working Groups
Build Identifier: HEAD Create a source file with the following content: template<class T> class A { public: A(T &t) { t.doSomething(); } }; class B { public: void doSomething() {}; }; int main() { B b; A<B> a(b); return 0; } Neither Ctrl-Shift-G nor Ctrl-Alt-H show the reference to B::doSomething(). Reproducible: Always
This looks like a duplicate of bug 326070.
*** This bug has been marked as a duplicate of bug 326070 ***