mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 03:13:02 -05:00
12 lines
128 B
Objective-C
12 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;
|
|
}
|
|
|