[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / complete-in-invalid-method.m
blob0e6c8e664ce660102dab96226f66017773a9f8b3
1 @interface I
2 -(void)foo;
3 @end
5 struct S {
6   int x,y;
7 };
9 @implementation I
10 -(void) foo {
11   struct S s;
12   if (1) {
13     s.
15 @end
17 // RUN: c-index-test -code-completion-at=%s:13:7 -fobjc-nonfragile-abi %s | FileCheck %s
18 // CHECK: FieldDecl:{ResultType int}{TypedText x}
19 // CHECK: FieldDecl:{ResultType int}{TypedText y}