blob: a47e27ded2fc043115f01c3f925bea59ac5363ba [file] [log] [blame]
template <typename T1, typename T2>
struct A
{
typedef T1 MyT1;
using MyT2 = T2;
};
using B = A<int, char>;
template<typename T>
using C = A<int, T>;