summaryrefslogtreecommitdiff
path: root/test/SemaObjC/comptypes-8.m
blob: b19bc302b223f8a8283289c26c0c683a74f50ca5 (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;
}