Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

2002-05-23-TypeNameCollision.c
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null

/* Testcase for when struct tag conflicts with typedef name... grr */

typedef struct foo {
  struct foo *X;
  int Y;
} * foo;

foo F1;
struct foo *F2;

enum bar { test1, test2 };

typedef float bar;

enum bar B1;
bar B2;