blob: cd22f5b10c9c38f354cbe8008e3156bdda3b996b [file] [log] [blame]
struct A
{
template<int> void foo();
};
template<int N> struct B : A
{
B() { foo<N>(); }
};
B<0> b;