summaryrefslogtreecommitdiff
path: root/clang/test/Index/complete-in-invalid-method.m
blob: 0e6c8e664ce660102dab96226f66017773a9f8b3 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@interface I
-(void)foo;
@end

struct S {
  int x,y;
};

@implementation I
-(void) foo {
  struct S s;
  if (1) {
    s.
}
@end

// RUN: c-index-test -code-completion-at=%s:13:7 -fobjc-nonfragile-abi %s | FileCheck %s
// CHECK: FieldDecl:{ResultType int}{TypedText x}
// CHECK: FieldDecl:{ResultType int}{TypedText y}