Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
int test(int x) { if (x) { int *p = 0; return *p; // Null dereference. } else { return 1 / x; // Division by zero. } }