blob: f138e3d6169fcb9380f6b98576dcbdee7a55171c [file] [log] [blame]
// PR c++/26365
struct A {};
namespace N
{
template<int> void foo();
}
void bar(A *p)
{
p->N::foo<0>; // { dg-error "not a member" }
}