minix/external/bsd/llvm/dist/clang/test/Index/complete-in-invalid-method.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

19 lines
318 B
Objective-C

@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}