Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

class.h
#ifndef Class
#define Class
template <class T>
class S {
  int Field;
  void run() {
    int x;
    A::Check(&Field, 1);
    A::Check(&Field, 1);
  }
};
#endif