blob: 850d38828241dc3155879a4779e2603f92a1204d [file] [log] [blame]
namespace NS {
struct C {};
void foo(C);
}
template <class T> void bar() { T t; foo (t); }
template void bar<NS::C> ();