blob: 2fd284f330eb687661c7fab4c118bea2cfd05264 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14
// XFAIL: availability-pmr-missing
// <unordered_map>
// namespace std::pmr {
//
// typedef ... unordered_map
//
// } // namespace std::pmr
#include <unordered_map>
int main(int, char**) {
{
// Check that std::pmr::unordered_map is usable without <memory_resource>.
std::pmr::unordered_map<int, int> m;
std::pmr::unordered_multimap<int, int> mm;
}
return 0;
}