-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 3.4.0-beta1
-
None
Class member function:
class Foo { void func(); }; void Foo::func() { enum E { val1, val2, val3 }; val<complete> // doesn't work }
Inside a nested struct in a function:
void foo() { struct S { void fun() { enum E { val1, val2, val3 }; val<complete> // doesn't work } }; }