Add a couple of test files missed in r281258.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 12 Sep 2016 21:07:09 +0000 (21:07 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 12 Sep 2016 21:07:09 +0000 (21:07 +0000)
llvm-svn: 281259

clang/test/Modules/Inputs/merge-template-pattern-visibility/c.h [new file with mode: 0644]
clang/test/Modules/Inputs/merge-template-pattern-visibility/d.h [new file with mode: 0644]

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 (file)
index 0000000..db80eda
--- /dev/null
@@ -0,0 +1,9 @@
+namespace CrossModuleMerge {
+  template<typename, typename = int> struct A;
+  template<typename T> struct B;
+
+  template<typename, typename> struct A {};
+  template<typename T> struct B : A<T> {};
+  template<typename T> 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 (file)
index 0000000..464f0f5
--- /dev/null
@@ -0,0 +1 @@
+// d.h: empty