Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
2bebbf0acee55404de4b8846713b64429e744e8f
/
.
/
test
/
Parser
/
enhanced-proto-1.m
blob: 1f42ec2efbb4909cc43f55a931e4cd73aafc9d57 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -verify %s
@protocol
MyProto1
@optional
-
(
void
)
FOO
;
@optional
-
(
void
)
FOO
;
@required
-
(
void
)
REQ
;
@optional
@end
@protocol
MyProto2
<
MyProto1
>
-
(
void
)
FOO2
;
@optional
-
(
void
)
FOO3
;
@end