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

@protocol MyProtocol
@end

id<MyProtocol> obj_p = 0;

int main()
{
  obj_p = 0;
}