Add (almost identical) tests for C++14 constructors in unordered_map and unordered_multimap:
unordered_[multi]map(size_type sz, const allocator_type& alloc); unordered_[multi]map(size_type sz, const hasher& hash, const allocator_type& alloc); template <class InputIt> unordered_[multi]map(InputIt first, InputIt last, size_type sz, const allocator_type& alloc); template <class InputIt> unordered_[multi]map(InputIt first, InputIt last, size_type sz, const hasher& hash, const allocator_type& alloc); unordered_[multi]map(initializer_list<value_type> init, size_type sz, const allocator_type& alloc); unordered_[multi]map(initializer_list<value_type> init, size_type sz, const hasher& hash, const allocator_type& alloc);
The identical PR for unordered_set and unordered_multiset would be added in the future (not to make this PR too huge)