-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 3.1.2, Qt Creator 3.2.0-rc1, Qt Creator 3.3.0-beta1
-
None
-
0bc202d52fca029849e38b05f91efed4d1ee7bd1
template <typename T> struct S {}; template <typename T> struct S<T*> { T* t; }; struct Foo { int foo; }; int main() { S<Foo*> s; s.t-> //no code completion return 0; }