diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-01-12 20:34:32 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-01-12 20:34:32 +0000 |
| commit | 2de44e658d62f1032111933a5b751f17fc477c55 (patch) | |
| tree | 55daa1a3c6498b6684ff61f4f31908f745f766b7 /clang/test/Modules/Inputs | |
| parent | 3469ee120c753c60875ddc301ea7921700b8730a (diff) | |
| download | bcm5719-llvm-2de44e658d62f1032111933a5b751f17fc477c55.tar.gz bcm5719-llvm-2de44e658d62f1032111933a5b751f17fc477c55.zip | |
[modules] Don't diagnose a conflict between two using-declarations that name equivalent internal linkage entities.
llvm-svn: 257512
Diffstat (limited to 'clang/test/Modules/Inputs')
| -rw-r--r-- | clang/test/Modules/Inputs/using-decl-redecl/a.h | 3 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/using-decl-redecl/d.h | 1 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/using-decl-redecl/module.modulemap | 5 |
3 files changed, 6 insertions, 3 deletions
diff --git a/clang/test/Modules/Inputs/using-decl-redecl/a.h b/clang/test/Modules/Inputs/using-decl-redecl/a.h index 477546945c0..eaa1876aac6 100644 --- a/clang/test/Modules/Inputs/using-decl-redecl/a.h +++ b/clang/test/Modules/Inputs/using-decl-redecl/a.h @@ -1,2 +1,3 @@ struct string {}; -namespace N { typedef ::string clstring; } +const int n = 0; +namespace N { typedef ::string clstring; using ::n; } diff --git a/clang/test/Modules/Inputs/using-decl-redecl/d.h b/clang/test/Modules/Inputs/using-decl-redecl/d.h new file mode 100644 index 00000000000..2243de1baf9 --- /dev/null +++ b/clang/test/Modules/Inputs/using-decl-redecl/d.h @@ -0,0 +1 @@ +#include "a.h" diff --git a/clang/test/Modules/Inputs/using-decl-redecl/module.modulemap b/clang/test/Modules/Inputs/using-decl-redecl/module.modulemap index bd6ea830c2d..a2ebc176764 100644 --- a/clang/test/Modules/Inputs/using-decl-redecl/module.modulemap +++ b/clang/test/Modules/Inputs/using-decl-redecl/module.modulemap @@ -1,3 +1,4 @@ module a { header "a.h" } -module b { header "b.h" export * } -module c { header "c.h" export * } +module b { header "b.h" export a } +module c { header "c.h" export a export b } +module d { header "d.h" } |

