Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

c.h
namespace N {
  template <typename> struct A {
    int n;
    A() : n() {}
  };

  // Trigger instantiation of definition of A<int>.
  struct C {
    A<int> a;
  };
}

// Merge in another declaration and update records.
#include "b1.h"