Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / no-warn-synth-protocol-meth.m
blobcdb855e1547315752eaba85b11a480f275f738bc
1 // RUN: %clang_cc1  -fsyntax-only -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
4 @protocol CYCdef
5 - (int)name;
6 @end
8 @interface JSCdef <CYCdef> {
9     int name;
12 @property (assign) int name;
13 @end
15 @implementation JSCdef
16 @synthesize name;
17 @end