You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
439 B
17 lines
439 B
BEGIN
|
|
template<typename T = int> struct A {};
|
|
template<typename T> struct B {};
|
|
template<typename T> struct C;
|
|
template<typename T> struct D;
|
|
template<typename T> struct E;
|
|
template<typename T = int> struct G;
|
|
template<typename T = int> struct H;
|
|
template<typename T> struct J {};
|
|
template<typename T = int> struct J;
|
|
struct K : J<> {};
|
|
template<typename T = void> struct L;
|
|
struct FriendL {
|
|
template<typename T> friend struct L;
|
|
};
|
|
END
|