Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Not Evaluated
-
Resolution: Out of scope
-
Affects Version/s: Qt Creator 4.8.0-beta1
-
Fix Version/s: None
-
Component/s: Debugger
-
Environment:* Windows 7 x64
* Creator 4.8-beta1 x64 based on Qt 5.11.1 (MSVC 2015, 64 bit) rev d7be70afd4
* CDB 6.2.9200.20512 X86
-
Platform/s:
Description
typedef struct { union { struct { int bit0: 1; int rest: 7; } bit; int byte; } bar; } Foo; int main() { Foo foo; foo.bar.byte = 42; foo.bar.bit.bit0 = 1; return 0; // break here: foo not accessible } // step here: foo accessible, but bit not
When the python dumpers are disabled, the code can be debugged nicely