Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

virtual-inherited-destructor.cpp
// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only

struct A { virtual ~A(); };
struct B : A {
  ~B() { }
};
B x;