unordered_map.h (__unordered_map): Remove.
[gcc.git] / libstdc++-v3 / testsuite / 23_containers / unordered_set / instantiation_neg.cc
index eb16e81a4d34619f84816db55bdcd17341d5790d..ac304776cadc3444af820831e4aa3610c49ebf76 100644 (file)
@@ -2,7 +2,7 @@
 // { dg-options "-std=gnu++0x" }
 // { dg-require-normal-mode "" }
 
-// Copyright (C) 2011 Free Software Foundation, Inc.
+// Copyright (C) 2011, 2012 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -19,7 +19,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-error "static assertion failed" "" { target *-*-* } 185 }
+// { dg-error "with noexcept" "" { target *-*-* } 248 }
 
 #include <unordered_set>
 
@@ -35,7 +35,10 @@ namespace
 void
 test01()
 {
-  std::__unordered_set<int, hash_without_noexcept,
-                      std::equal_to<int>, std::allocator<int>,
-                      false> us;
+  using traits = std::__detail::_Hashtable_traits<false, true, true>;
+  using hashtable = std::__uset_hashtable<int, hash_without_noexcept,
+                                         std::equal_to<int>,
+                                         std::allocator<int>, traits>;
+
+  hashtable ht;
 }