Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

instantiate-enum-2.cpp
// RUN: %clang_cc1 %s -fsyntax-only -verify
// expected-no-diagnostics

template<int IntBits> struct X {
  enum {
    IntShift = (unsigned long long)IntBits,
    ShiftedIntMask = (1 << IntShift)
  };
};
X<1> x;