1*67e74705SXin Li// RUN: rm -rf %t && mkdir %t 2*67e74705SXin Li// RUN: echo 'module Foo { header "foo.h" }' > %t/module.modulemap 3*67e74705SXin Li// RUN: echo '#define FOO_MACRO 42' > %t/foo.h 4*67e74705SXin Li// RUN: c-index-test -code-completion-at=%s:8:1 -I %t -fmodules-cache-path=%t -fmodules %s | FileCheck %s 5*67e74705SXin Li 6*67e74705SXin Li@import Foo; 7*67e74705SXin Liint x = 8*67e74705SXin Li/*here*/1; 9*67e74705SXin Li 10*67e74705SXin Li// CHECK: FOO_MACRO 11