Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeCompletion / macros-in-modules.m
blobaf6210f49b5644f4ad353cccca756f8a3ffb655d
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:%(line+4):1 -I %t -fmodules-cache-path=%t -fmodules %s | FileCheck %s
6 @import Foo;
7 int x =
8 /*here*/1;
10 // CHECK: FOO_MACRO