Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 2.7.1
-
None
-
Mac OS X 10.8.3
Description
Creator consistently crashes when I try to type this. within B::B(). I was able to implement my logic by turning completion off in Preferences > Text Editor.
template <typename Derived> class A{}; class B : A<B> { B() { } }; int main(){}
I doubt it matters, but here's my .pro file:
TARGET = Creator-bug TEMPLATE = app SOURCES += main.cpp
(By the way, thanks for the tools!)