brintos

brintos / llvm-project-archived public Read only

0
0
Text · 75 B · ca4c096 Raw
9 lines · c
1struct foo {2  int i;3};4 5void func(void) {6  struct foo *f;7  f->i = 3;8}9