summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/template24.C
blob: 33d9d4cfd5a4a95a41deded823ad53017e9de8c2 (plain)
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" } */
}