Mercurial > hg > CbC > CbC_llvm
view clang/test/Index/codecompletion-chained.cpp @ 206:f17a3b42b08b
Added tag before-12 for changeset b7591485f4cd
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 07 Jun 2021 21:25:57 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// <rdar://12889089> #ifndef HEADER1 #define HEADER1 // CHECK-TU: FunctionDecl:{ResultType void}{TypedText foo} void foo(); namespace Cake { // CHECK-NAMESPACE: FunctionDecl:{ResultType void}{TypedText lie} void lie(); } #elif !defined(HEADER2) #define HEADER2 namespace Cake { extern int Baz; } #else void func() { Cake:: } #endif // RUN: c-index-test -write-pch %t1.h.pch %s // RUN: c-index-test -write-pch %t2.h.pch %s -include %t1.h // RUN: c-index-test -code-completion-at=%s:25:1 %s -include %t2.h | FileCheck -check-prefix=CHECK-TU %s // RUN: c-index-test -code-completion-at=%s:25:7 %s -include %t2.h | FileCheck -check-prefix=CHECK-NAMESPACE %s