blob: 4904a281a400bb22ad198f0cbdddaead97f1addf [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;