Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

p4.cpp
// RUN: %clang_cc1 -std=c++1z -verify %s

inline int f(); // expected-warning {{inline function 'f' is not defined}}
extern inline int n; // expected-error {{inline variable 'n' is not defined}}

int use = f() + n; // expected-note 2{{used here}}