Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

warn-unused-variables-werror.c
// RUN: %clang_cc1 -fsyntax-only -Wunused-variable -Werror -verify %s

void f(void) {
  int i;  // expected-error{{unused}}
  int j;  // expected-error{{unused}}
}