blob: 5836cb366159528c06bb5ec0b6f3b8c3230b2ec1 [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_set>
// The container's value type must be the same as the allocator's value type
#include <unordered_set>
int main()
{
std::unordered_multiset<int, std::hash<int>, std::less<int>, std::allocator<long> > v;
}