Update g++.dg/ext/sve-sizeless-2.C after r279471

2019-12-19  Richard Sandiford  <richard.sandiford@arm.com>

gcc/testsuite/
	* g++.dg/ext/sve-sizeless-2.C: Don't expect an error for
	alias templates.

From-SVN: r279588
This commit is contained in:
Richard Sandiford 2019-12-19 17:23:44 +00:00 committed by Richard Sandiford
parent 82975c743e
commit 38830e506c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2019-12-19 Richard Sandiford <richard.sandiford@arm.com>
* g++.dg/ext/sve-sizeless-2.C: Don't expect an error for
alias templates.
2019-12-19 Mark Eggleston <mark.eggleston@codethink.com>
PR fortran/92896

View file

@ -74,7 +74,7 @@ template class templated_struct5<svint8_t>;
#if __cplusplus >= 201103L
template<int N> using typedef_sizeless1 = svint8_t;
template<int N> using typedef_sizeless1 = svint8_t; // { dg-error {redefinition of 'template<int N> using typedef_sizeless1 = svint8_t'} "" { target c++11 } }
template<int N> using typedef_sizeless1 = svint8_t;
template<typename T> using array = T[2];
#endif