blob: 56e0b6d2e5b88f606f7832f1fb4b1e391d7d96c0 [file] [log] [blame]
//PR c++/28736
template<void> struct A // { dg-error "not a valid type" }
{
template<typename> friend struct B;
};
template<typename> struct B {};
B<int> b; // { dg-error "template argument|invalid type" }