From: Richard Smith Date: Mon, 12 Sep 2016 21:07:09 +0000 (+0000) Subject: Add a couple of test files missed in r281258. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7707c4a109334e015e158a6ce40c9d3638e757d9;p=platform%2Fupstream%2Fllvm.git Add a couple of test files missed in r281258. llvm-svn: 281259 --- diff --git a/clang/test/Modules/Inputs/merge-template-pattern-visibility/c.h b/clang/test/Modules/Inputs/merge-template-pattern-visibility/c.h new file mode 100644 index 0000000..db80eda --- /dev/null +++ b/clang/test/Modules/Inputs/merge-template-pattern-visibility/c.h @@ -0,0 +1,9 @@ +namespace CrossModuleMerge { + template struct A; + template struct B; + + template struct A {}; + template struct B : A {}; + template inline auto C(T) {} +} + diff --git a/clang/test/Modules/Inputs/merge-template-pattern-visibility/d.h b/clang/test/Modules/Inputs/merge-template-pattern-visibility/d.h new file mode 100644 index 0000000..464f0f5 --- /dev/null +++ b/clang/test/Modules/Inputs/merge-template-pattern-visibility/d.h @@ -0,0 +1 @@ +// d.h: empty