Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

has_feature.cu
// RUN: %clang_cc1 -E -triple x86_64-linux-gnu %s -o - | FileCheck %s

// CHECK: has_noinline_keyword
#if __has_feature(cuda_noinline_keyword)
int has_noinline_keyword();
#else
int no_noinine_keyword();
#endif