Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / property-redundant-decl-accessor.m
blob6ff2ceab7ea26864f96779c3f71b57c5da23a976
1 // RUN: %clang_cc1 -fsyntax-only -Werror -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
4 @interface MyClass {
5     const char  *_myName;
8 @property const char *myName;
10 - (const char *)myName;
11 - (void)setMyName:(const char *)name;
13 @end
15 @implementation MyClass
17 @synthesize myName = _myName;
19 @end