Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

implicit-int-float-narrowing.cpp
// RUN: %clang_cc1 %s -verify -Wno-conversion -Wno-c++11-narrowing -Wimplicit-int-float-conversion

void testNoWarningOnNarrowing() {
  // Test that we do not issue duplicated warnings for
  // C++11 narrowing.
  float a = {222222222222L}; // expected-no-diagnostics

  long b = 222222222222L;
  float c = {b}; // expected-no-diagnostics
}