Add new test file missing from r247486.

llvm-svn: 247488
This commit is contained in:
Richard Smith 2015-09-11 22:54:01 +00:00
parent 4340aad144
commit c8a7eb5939
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
BEGIN
template<typename T = void> struct L;
struct FriendL {
template<typename T> friend struct L;
};
END