]> granicus.if.org Git - clang/commitdiff
Add new test file missing from r247486.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 11 Sep 2015 22:54:01 +0000 (22:54 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 11 Sep 2015 22:54:01 +0000 (22:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@247488 91177308-0d34-0410-b5e6-96231b3b80d8

test/Modules/Inputs/template-default-args/d.h [new file with mode: 0644]

diff --git a/test/Modules/Inputs/template-default-args/d.h b/test/Modules/Inputs/template-default-args/d.h
new file mode 100644 (file)
index 0000000..5961c91
--- /dev/null
@@ -0,0 +1,6 @@
+BEGIN
+template<typename T = void> struct L;
+struct FriendL {
+  template<typename T> friend struct L;
+};
+END