blob: 8ec767d39334130069a0e5f44064c0dcf971faaf [file] [log] [blame]
// PR c++/23191
// Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
// { dg-do compile }
template<typename T> struct A
{
void foo() throw(typename T::X); // { dg-error "not a class" }
};
A<void> a; // { dg-error "instantiated" }