Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

reparse-instantiate.h
template <typename T> struct S;

template<typename T> void c(T)
{
}

template <> struct S <int>
{
  void a()
  {
    c(&S<int>::b);
  }
  void b() {}
};