Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 3.5.0-beta1
-
None
-
b67ebf9ffce6bbba7952b36120f49d7abf956e66
Description
// Case 1 template<typename T> using type = T; // Case 2 struct Parent { template<typename T> using type = T; }; // Case 3 template<typename T> struct ParentT { template<typename DT> using type = DT; }; struct Foo { int bar; }; void func() { type<Foo> p1; Parent::type<Foo> p2; ParentT<Foo>::type<Foo> p3; // bar not highlighted p1.bar; p2.bar; p3.bar; }
Attachments
Issue Links
- is required for
-
QTCREATORBUG-8922 Code completion does not work for std::vector of objects
- Closed
- relates to
-
QTCREATORBUG-9944 Types not highlighted when template<typename T> using newtype = oldtype<T> is used.
- Closed