Documentation
1
2
3
4
5
6
7
8
9
10
int main() {
  int i = 0;
  void *ptr;
  if (i) {
    ptr = malloc(8);
  } else {
    ptr = 0;
  }
  return ptr;
}