Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / SemaObjC / comptypes-8.m
blob750b0a6a5a97dd6d8e3063bc7a20e72e307f18e6
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @protocol MyProtocol
4 @end
6 id<MyProtocol> obj_p = 0;
8 int main()
10   obj_p = 0;