mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 12:40:06 +00:00
12 lines
156 B
C++
12 lines
156 B
C++
|
|
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>;
|