Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / sizeof-template-argument.C
blobf7472c3c1a1c15c39936a5168d6991e195c600f7
1 /* This used to ICE (PR c++/29573) */
2 /* { dg-do "compile" } */
4 template<int> struct A {};
6 template<typename> struct B : A <sizeof(=)> {}; /* { dg-error "parse error in template argument list" } */
8 template<typename> struct C : A <sizeof(=)> {}; /* { dg-error "parse error in template argument list" } */
10 int a;
12 template<typename> struct D : A <sizeof(a=1)> {}; /* This used to ICE as well. */
14 template<typename> struct E : A <sizeof(a=1)> {}; /* This used to ICE as well. */