Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

invalid-aligned-attr.cpp
// RUN: %clang_cc1 -frecovery-ast -verify %s
// RUN: %clang_cc1 -verify %s

struct alignas(invalid()) Foo {}; // expected-error {{use of undeclared identifier}}

constexpr int k = alignof(Foo);