testsuite: Fix g++.dg/abi/mangle83.C [PR121578]

This testcase (added in r16-3233-g7921bb4afcb7a3) mistakenly only
required C++14, but auto template paramaters are a C++17 feature.

	PR c++/121578

gcc/testsuite/ChangeLog:

	* g++.dg/abi/mangle83.C: Requires C++17.

Signed-off-by: Nathaniel Shead <nathanieloshead@gmail.com>
This commit is contained in:
Nathaniel Shead
2025-08-19 15:08:21 +10:00
parent f0c7611659
commit b514cd7a4b

View File

@@ -1,6 +1,6 @@
// PR c++/120503
// Implement P2115r0 "merging definitions of unnamed unscoped enums"
// { dg-do compile { target c++14 } }
// { dg-do compile { target c++17 } }
template<auto V> int Frob () { return int (V); }