freebsd-nq/test/SemaObjC/comptypes-8.m
2009-06-02 17:58:47 +00:00

13 lines
126 B
Objective-C

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