1 2 3 4 5 6 7 8
/* 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" } */ }