Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 4.7.0
-
None
Description
Qt Creator doesn't understand following code:
template<template <class> class T> struct Foo{ }; template<class T> struct Bar{ template<class V> struct Baz{ }; }; template<class T> void foo(){ Foo<Bar<T>::template Baz> f; }
The code is correct, but it is underlined with red line and marked as "expected token `/=` got `template`".