Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

captured-statements.c
// RUN: %clang_cc1 -verify %s

void test1(void)
{
  #pragma clang __debug captured x // expected-warning {{extra tokens at end of #pragma clang __debug captured directive}}
  {
  }
}

void test2(void)
{
  #pragma clang __debug captured
  int x; // expected-error {{expected '{'}}
}