Richard Smith c8a7eb5939 Add new test file missing from r247486.
llvm-svn: 247488
2015-09-11 22:54:01 +00:00

7 lines
108 B
C++

BEGIN
template<typename T = void> struct L;
struct FriendL {
template<typename T> friend struct L;
};
END