Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

vararg-default-arg.cpp
// RUN: %clang_cc1 %s -verify -fsyntax-only
// expected-no-diagnostics
// PR5462

void f1(void);
void f2(const char * = __null, ...);

void f1(void)
{
        f2();
}