1int main() {
2 union {
3 int i;
4 char c;
5 };
6 i = 0xFFFFFF00;
7 c = 'A';
8 return c; // break here
9}
10

Provided by KDAB

Privacy Policy
Improve your Profiling and Debugging skills
Find out more

source code of lldb/test/API/lang/cpp/frame-var-anon-unions/main.cpp