blob: 8eee471ffb685a1f77700bcfcde98abe6fae8850 [file] [log] [blame]
// PR c++/53563
template<class T>
struct s
{
template<class U>
s(){}
};
int main() {
struct s<void>::s<int> a; // { dg-error "no match" }
}