11 lines · plain
1// RUN: rm -rf %t && mkdir %t2// RUN: echo 'module Foo { header "foo.h" }' > %t/module.modulemap3// RUN: echo '#define FOO_MACRO 42' > %t/foo.h4// RUN: c-index-test -code-completion-at=%s:%(line+4):1 -I %t -fmodules-cache-path=%t -fmodules %s | FileCheck %s5 6@import Foo;7int x =8/*here*/1;9 10// CHECK: FOO_MACRO11