brintos

brintos / llvm-project-archived public Read only

0
0
Text · 108 B · 976d3f5 Raw
10 lines · cpp
1int main() {2  union {3    int i;4    char c;5  };6  i = 0xFFFFFF00;7  c = 'A';8  return c; // break here9}10