Add static_assert to set/multiset/map/multimap/forward_list/deque that the allocator's value_type match the container's value_type. vector/unordered/list/string already do this. Add tests for all the containers to verify this.

llvm-svn: 254119
diff --git a/libcxx/include/deque b/libcxx/include/deque
index b0b778a..c6fbd51 100644
--- a/libcxx/include/deque
+++ b/libcxx/include/deque
@@ -1196,6 +1196,9 @@
     typedef _Tp value_type;
     typedef _Allocator allocator_type;
 
+    static_assert((is_same<typename allocator_type::value_type, value_type>::value),
+                  "Allocator::value_type must be same type as value_type");
+
     typedef __deque_base<value_type, allocator_type> __base;
 
     typedef typename __base::__alloc_traits        __alloc_traits;