Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. template<typename T> struct C {};
  2.  
  3. template <template <typename T> class C>
  4. class D {
  5. C<int> cint;
  6. C<double> cdouble;
  7. };
  8.  
  9. int main() {
  10. D<C> d;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement