(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
template24.C
/* PR c++/29731. This used to ICE in uses_template_parms. */

template<int> struct A {};

void foo()
{
  A<({})> a; /* { dg-error "forbids braced-groups within expressions|statement-expressions|template argument 1 is invalid|invalid type" } */
}