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.
12 lines
156 B
12 lines
156 B
10 years ago
|
|
||
|
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>;
|