From: Richard Smith Date: Fri, 11 Sep 2015 22:54:01 +0000 (+0000) Subject: Add new test file missing from r247486. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c83984cf823e851d7c2efa61e9a679cd2b0f7a4a;p=clang Add new test file missing from r247486. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@247488 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Modules/Inputs/template-default-args/d.h b/test/Modules/Inputs/template-default-args/d.h new file mode 100644 index 0000000000..5961c91a82 --- /dev/null +++ b/test/Modules/Inputs/template-default-args/d.h @@ -0,0 +1,6 @@ +BEGIN +template struct L; +struct FriendL { + template friend struct L; +}; +END