-
Bug
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
Qt Creator 2.3.0-rc, Qt Creator 2.5.0-beta
-
None
-
Windows XP SP3, MinGW (GDB)
Consider the following code:
typedef struct { int m1; int m2; } s1; struct s2 : public s1 { }; int main() { s2 s; s.m1 = 5; return 0; // breakpoint here }
Try to expand s, you get "<unavailable synchronous data>". If s is declared as s1, it works.