[clang-tidy][use-internal-linkage]fix false positives for global overloaded operator...
[llvm-project.git] / clang / test / CodeCompletion / objc-protocol-member-access.m
blob245ef5e3955679363c89ca67609233a7ebf780c3
1 // Note: the run lines follow their respective tests, since line/column
2 // matter in this test.
4 @protocol Bar
5 @property (readonly) int bar;
6 @end
8 @protocol Foo <Bar>
10 @property (nonatomic, readonly) int foo;
11 - (void)foobar: (int)x;
13 @end
15 int getFoo(id object) {
16   id<Foo> modelObject = (id<Foo>)object;
17   int foo = modelObject.;
18   return foo;
21 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-4):25 %s -o - | FileCheck %s
22 // CHECK: bar (InBase) : [#int#]bar
23 // CHECK: foo (InBase) : [#int#]foo
24 // CHECK-NOT: foobar