Mercurial > hg > CbC > CbC_llvm
view clang/test/Index/complete-in-invalid-method.m @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
line wrap: on
line source
@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}