Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

global-hex-value-regex.c
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s

void foo(void) {
  static int hex = 0x10;
  static int dec = 10;
}
void bar(void) {
  static int hex = 0x20;
  static int dec = 20;
}