diff --git a/libstdc++-v3/testsuite/23_containers/deque/debug/98466.cc b/libstdc++-v3/testsuite/23_containers/deque/debug/98466.cc
index 720977e5622..c2d7933747e 100644
--- a/libstdc++-v3/testsuite/23_containers/deque/debug/98466.cc
+++ b/libstdc++-v3/testsuite/23_containers/deque/debug/98466.cc
@@ -15,7 +15,7 @@
// with this library; see the file COPYING3. If not see
// .
-// { dg-do run { target c++11 } }
+// { dg-do run }
#include
#include
@@ -24,10 +24,12 @@
void test01()
{
- __gnu_debug::deque::iterator it{};
+ typedef typename __gnu_debug::deque::iterator It;
+ It it = It();
VERIFY( it == it );
- __gnu_debug::deque::const_iterator cit{};
+ typedef typename __gnu_debug::deque::const_iterator Cit;
+ Cit cit = Cit();
VERIFY( cit == cit );
}