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

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