Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

cxx-offsetof-base.h
// Header for PCH test cxx-offsetof-base.cpp

struct Base { int x; };
struct Derived : Base { int y; };
int o = __builtin_offsetof(Derived, x);