Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

minimize_source_to_dependency_directives_include.c
// Test double slashes in #include directive along with angle brackets. Previously, this was interpreted as comments.
// RUN: %clang_cc1 -DTEST -print-dependency-directives-minimized-source %s 2>&1 | FileCheck %s

#include "a//b.h"
#include <a//b.h>

// CHECK: #include "a//b.h"
// CHECK: #include <a//b.h>