blob: 1dd2b51b3ebf634d3ba87525fcb083d9a182f3d1 [file] [log] [blame]
// PR c++/18436
void foo(int);
struct A
{
static void foo(A);
};
template <typename T> struct B : T
{
B() { foo(T()); }
};
B<A> b;