Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

uncounted-members-regression-46142.cpp
// regression test for https://bugs.llvm.org/show_bug.cgi?id=46142

// RUN: %clang_analyze_cc1 -analyzer-checker=webkit.NoUncountedMemberChecker -verify %s
// expected-no-diagnostics

class ClassWithoutADefinition;
class Foo {
    const ClassWithoutADefinition *foo;
};