Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

decls.h
namespace RealNS { int UsingDecl; }
namespace NS = RealNS;
typedef int Typedef;
using AliasDecl = int;
using RealNS::UsingDecl;
struct Struct {};
extern int Variable;
namespace AnotherNS {}
enum X { Enumerator };
void Overloads();
void Overloads(int);