brintos

brintos / llvm-project-archived public Read only

0
0
Text · 89 B · 21a43df Raw
6 lines · c
1int main() {2  int *p = 0;3  *p = 7; // We expect a diagnostic about this.4  return 0;5}6