|
|
От: |
ssm
|
|
| Дата: | 15.04.03 08:18 | ||
| Оценка: | |||
template<typename T1>
struct test{
template<typename T, typename U> struct A{};
template<typename T, typename U>
struct B : public A<T, U>{
typedef A<T, U> _Base;
};
};
int main(){
test<int>();
return 0;
} template<typename T, typename U>
struct B : public A<T, U>{
typedef test<T1>::A<T, U> _Base;
};