Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

selector-2.m
// RUN: %clang_cc1  -fsyntax-only -Wselector -verify %s
// expected-no-diagnostics
// rdar://8851684
@interface  I
- length;
@end

static inline SEL IsEmpty(void) {
    return @selector(length);
}

int main (int argc, const char * argv[]) {
    return 0;
}