blob: 0ed55387e3d666a7ab2d0947de6c0e3c78c51d08 [file] [log] [blame]
// Note: the run lines follow their respective tests, since line/column
// matter in this test.
@protocol Bar
@property (readonly) int bar;
@end
@protocol Foo <Bar>
@property (nonatomic, readonly) int foo;
- (void)foobar: (int)x;
@end
int getFoo(id object) {
id<Foo> modelObject = (id<Foo>)object;
int foo = modelObject.;
return foo;
}
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:17:25 %s -o - | FileCheck %s
// CHECK: bar : [#int#]bar
// CHECK: foo : [#int#]foo
// CHECK-NOT: foobar