[Bug c++/25751] Poor error when templating on undefined types

pinskia at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Fri Jan 7 05:56:04 GMT 2022


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25751

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced testcase:
template<class> struct gg{};
int main(void)
{
  gg<t> v;
  v.begin();
}


More information about the Gcc-bugs mailing list