xref: /llvm-project/lldb/test/API/lang/cpp/frame-var-anon-unions/main.cpp (revision a7e7f541c0813e9d3f6c641ad8ff89619ec749d8)

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