Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

crash-function-type.mm
// RUN: %clang_cc1 -fblocks -fsanitize=function -emit-llvm %s -o %t

void g(void (^)());
void f() {
  __block int a = 0;
  g(^() {
    a++;
  });
}