allwinner_a64/android/external/clang/test/SemaObjC/protocol-expr-1.m
2018-08-08 16:14:42 +08:00

16 lines
223 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
@protocol fproto @end
@protocol p1
@end
@class cl;
int main()
{
Protocol *proto = @protocol(p1);
Protocol *fproto = @protocol(fproto);
}