repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
no-warn-synth-protocol-meth.m
blob
cdb855e1547315752eaba85b11a480f275f738bc
1
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2
// expected-no-diagnostics
3
4
@protocol CYCdef
5
- (int)name;
6
@end
7
8
@interface JSCdef <CYCdef> {
9
int name;
10
}
11
12
@property (assign) int name;
13
@end
14
15
@implementation JSCdef
16
@synthesize name;
17
@end
18