aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/comptypes-8.m
blob: af9267e499f60373bd861753d062a6738f5621b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: clang-cc -fsyntax-only -verify %s

@protocol MyProtocol
@end

id<MyProtocol> obj_p = 0;

int main()
{
  obj_p = 0;
}