freebsd-skq/test/SemaObjC/comptypes-8.m
2010-01-01 10:34:51 +00:00

13 lines
128 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
@protocol MyProtocol
@end
id<MyProtocol> obj_p = 0;
int main()
{
obj_p = 0;
}