blob: a06d2e6e6125519f0aa32b594254662ba22ddd69 [file] [log] [blame]
Fariborz Jahaniana0818e32007-10-15 23:39:13 +00001// RUN: clang -parse-noop %s
2
3typedef struct objc_selector *SEL;
4
5int main() {
6 SEL s = @selector(retain);
7 SEL s1 = @selector(meth1:);
8 SEL s2 = @selector(retainArgument::);
9 SEL s3 = @selector(retainArgument:::::);
10 SEL s4 = @selector(retainArgument:with:);
11 SEL s5 = @selector(meth1:with:with:);
12 SEL s6 = @selector(getEnum:enum:bool:);
13 SEL s7 = @selector(char:float:double:unsigned:short:long:);
14
15 SEL s9 = @selector(:enum:bool:);
16}