blob: 8bb99a189e9d2b4e4402870a10196c147a4669aa [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
@protocol MyProtocol
@end
id<MyProtocol> obj_p = 0;
int main(void)
{
obj_p = 0;
}