Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeCompletion / objc-member-access.m
blob0a46c6b81c5f3f334beab903e2c41d2ac0764ba5
1 // Note: the run lines follow their respective tests, since line/column
2 // matter in this test.
4 @interface TypeWithPropertiesBackedByIvars {
5   int _bar;
6   int _foo;
8 @property(nonatomic) int foo;
9 @property(nonatomic) int bar;
10 @end
12 int getFoo(id object) {
13   TypeWithPropertiesBackedByIvars *model = (TypeWithPropertiesBackedByIvars *)object;
14   int foo = model.;
15   return foo;
18 // RUN: %clang_cc1 -fsyntax-only -code-completion-with-fixits -code-completion-at=%s:%(line-4):19 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
19 // CHECK-CC1-NOT: [#int#]_bar
20 // CHECK-CC1-NOT: [#int#]_foo
21 // CHECK-CC1: [#int#]bar
22 // CHECK-CC1: [#int#]foo