1 2 3 4 5 6 7 8 9 10 11
// PR c++/30299 struct A { int i; }; template<void> struct B : A // { dg-error "not a valid type" } { B() { this->i; } };