brintos

brintos / llvm-project-archived public Read only

0
0
Text · 144 B · 5031a28 Raw
13 lines · plain
1#include <stdio.h>2 3typedef struct Pair {4  int f;5  int e;6} Pair;7 8int main() {9  Pair pair = {2, 3};10  printf("break here\n");11  return 0;12}13