blob: 3c740950d04ec0459adbe02a6f7ac43895ae3c73 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <unordered_map>
// The container's value type must be the same as the allocator's value type
#include <unordered_map>
int main()
{
std::unordered_multimap<int, int, std::hash<int>, std::less<int>, std::allocator<long> > m;
}