blob: d2f243cc036c6bee96dabf3171646caaa7c70f4f [file] [log] [blame]
Fariborz Jahanian91dd9df2012-08-16 18:33:47 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wcast-of-sel-type -Wno-unused-value %s
2// 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}