summaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC/comptypes-8.m
blob: 750b0a6a5a97dd6d8e3063bc7a20e72e307f18e6 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -fsyntax-only -verify %s

@protocol MyProtocol
@end

id<MyProtocol> obj_p = 0;

int main()
{
  obj_p = 0;
}