blob: 476568f6caa40b7b71a9fcac8812a6443956a1b5 [file] [log] [blame]
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001// RUN: clang -verify %s
2
Fariborz Jahanianb62f6812007-10-16 20:40:23 +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}