Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
Qt Creator 2.8.0-rc
-
df2684179 (master)
Description
#include <QList> void foo() { QList<int> list; (*list.begin()); // trigger assign to local here (*QList::const_iterator localBegin = list.begin()); // result is substitution like shown here int localBegin = (*list.begin()); // but this would be correct }