Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

decltype-crash.cpp
// RUN: %clang_cc1 -fsyntax-only -verify -Wc++11-compat -std=c++98 %s

int& a();

void f() {
  decltype(a()) c; // expected-warning {{'decltype' is a keyword in C++11}} \
                   // expected-error {{use of undeclared identifier 'decltype'}} \
                   // expected-error {{expected ';' after expression}} \
                   // expected-error {{use of undeclared identifier 'c'}}
}