xref: /aosp_15_r20/external/clang/test/CodeCompletion/macros-in-modules.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: rm -rf %t && mkdir %t
2 // RUN: echo 'module Foo { header "foo.h" }' > %t/module.modulemap
3 // RUN: echo '#define FOO_MACRO 42' > %t/foo.h
4 // RUN: c-index-test -code-completion-at=%s:9:1 -I %t %s | FileCheck %s
5 // RUN: c-index-test -code-completion-at=%s:9:1 -I %t -fmodules -fmodules-cache-path=%t %s | FileCheck %s
6 
7 #include "foo.h"
8 int x =
9 /*here*/1;
10 
11 // CHECK: FOO_MACRO
12