Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
93296683a70eed2fae0b694748ed4cc51c53aef4
/
.
/
test
/
SemaObjC
/
no-warn-synth-protocol-meth.m
blob: fed6b27652ea6adcca7efa2ade007daee30baa33 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
@protocol
CYCdef
-
(
int
)
name
;
@end
@interface
JSCdef
<
CYCdef
>
{
int
name
;
}
@property
(
assign
)
int
name
;
@end
@implementation
JSCdef
@synthesize
name
;
@end