blob: 2a8f3f829ca52f1e03d9f4b4dd56097fd3653868 [file] [log] [blame]
// PR c++/16965
template <typename T> struct B {
static int Bar(T); // { dg-error "" }
};
struct D : B<int>, B<char> {};
int i2 = D::Bar(2); // { dg-error "" }