Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

single_null_dereference.c
int main() {
  int *p = 0;
  *p = 7; // We expect a diagnostic about this.
  return 0;
}