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-exception-param.m
// RUN: %clang_cc1 -fsyntax-only -verify -fobjc-exceptions -Wunused-exception-parameter %s
void f0(void) {
  @try {} @catch(id a) {} // expected-warning{{unused exception parameter 'a'}}
}