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