Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Parser / selector-1.m
blob0f35ce79b20fb5d6db7f52bfbcc8fba82d152e92
1 // RUN: %clang_cc1 -fsyntax-only -verify %s 
3 int 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:);
13  SEL s9 = @selector(:enum:bool:);