blob: 97915a0094ef33a572a6fef15dea2bec10d66cb4 [file] [log] [blame]
Fariborz Jahanianca7a7be2012-08-16 20:16:46 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wno-unused-value %s
Fariborz Jahanian91dd9df2012-08-16 18:33:47 +00002// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wcast-of-sel-type -Wno-unused-value %s
3// rdar://12107381
4
5SEL s;
6
7SEL sel_registerName(const char *);
8
9int main() {
10(char *)s; // expected-warning {{cast of type 'SEL' to 'char *' is deprecated; use sel_getName instead}}
11(void *)s; // ok
12(const char *)sel_registerName("foo"); // expected-warning {{cast of type 'SEL' to 'const char *' is deprecated; use sel_getName instead}}
13
14(const void *)sel_registerName("foo"); // ok
15
16(void) s; // ok
17
18(void *const)s; // ok
19
20(const void *const)s; // ok
21}