Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class A
- {
- public:
- A() { }
- template<template<typename> class B>
- void C(B<int>&) { }
- };
- template<typename D, typename E>
- class F
- { };
- template<typename G>
- using H = F<G, int>;
- int main()
- {
- A a;
- H<int> h;
- a.C(h);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement