diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-04-27 21:57:05 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-04-27 21:57:05 +0000 |
commit | 4eb8393c636b5525ac92ee0ac8efcf263e0a2541 (patch) | |
tree | 4e85116ed26bc9b32d45f3fc6002ec97899023b2 /clang/test/Modules/Inputs/suggest-include/module.modulemap | |
parent | 575ad8c2e13d6099f67d9d5e816fad8968c6e900 (diff) | |
download | bcm5719-llvm-4eb8393c636b5525ac92ee0ac8efcf263e0a2541.tar.gz bcm5719-llvm-4eb8393c636b5525ac92ee0ac8efcf263e0a2541.zip |
[modules] When diagnosing a missing module import, suggest adding a #include if
the current language doesn't have an import syntax and we can figure out a
suitable file to include.
llvm-svn: 267802
Diffstat (limited to 'clang/test/Modules/Inputs/suggest-include/module.modulemap')
-rw-r--r-- | clang/test/Modules/Inputs/suggest-include/module.modulemap | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/suggest-include/module.modulemap b/clang/test/Modules/Inputs/suggest-include/module.modulemap new file mode 100644 index 00000000000..46afd7b2c21 --- /dev/null +++ b/clang/test/Modules/Inputs/suggest-include/module.modulemap @@ -0,0 +1,22 @@ +module X { + module Empty { header "empty.h" } + + exclude header "textual1.h" + textual header "textual2.h" + textual header "textual3.h" + + module A { header "usetextual1.h" } + module B { header "usetextual2.h" } + module C { header "usetextual3.h" } + module D { header "usetextual4.h" } + module E { header "usetextual5.h" } + + module P { private header "private1.h" } + module Q { private header "private2.h" } + module R { private header "private3.h" } + module S { header "useprivate1.h" export * } + module T { header "useprivate3.h" } +} + +module Other { textual header "textual4.h" } + |