blob: ee86bf399d49883c2ee0262d1fb25210698b7206 [file] [log] [blame]
// PR c++/51029
struct A
{
void foo();
};
struct B : virtual A
{
template<int> B()
{
foo();
}
};