Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 4.6.0-rc1, Qt Creator 4.7.0, Qt Creator 4.8.0-beta1
-
None
-
-
de975aca4f08141b1c6475e58f5cfa316fdd1350 (qt-creator/qt-creator/4.8)
Description
The bug is easy to reproduce.
Defining an enum class between Foo constructor and destructor causes crash. Crash happens at the moment when you hit space after enum class .
```
class Foo
{
public:
Foo() {}
>>>>>>
/* Define a enum class here..*/
enum class
<<<<<<<
~Foo() {}
};
```