1 void foo() {
2   int *i = 0;
3   *i = 1;
4 }
5 
6 void bar() { foo(); }
7 
8 int main(int argc, char **argv) { bar(); }
9