Skip to content

Instantly share code, notes, and snippets.

@wildmichael
Created July 11, 2010 10:28
Show Gist options
  • Save wildmichael/471444 to your computer and use it in GitHub Desktop.
Save wildmichael/471444 to your computer and use it in GitHub Desktop.
template<template<class> class T> class A {};
template<class U> class B {};
template<template<class> class T>
void fun(const A<T>& a) {}
template void fun(const A<B>& a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment