Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 2.5.0-beta
-
None
-
Windows 7
-
36deb6b060d1b553bbb2aede573581464f57e031
Description
#define MEMBER_IMPL(selfClass) struct selfClass MEMBER_IMPL(Invalid) { float testFloat; int testInt; }; struct Valid { float testFloat; int testInt; }; int main() { Invalid i; // Issue 1 i.testFloat = 9; // Issue 2 Valid v; v.testFloat = 8; return 0; }
Follow Symbol doesn't work under "i.testFloat" or "Invalid".
Because the struct "Invalid" is defined by macro.