blob: 07a221929791deb8374074e5646800a9733f4307 [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
// <map>
// namespace std::pmr {
//
// typedef ... map
//
// } // namespace std::pmr
#include <map>
int main(int, char**) {
{
// Check that std::pmr::map is usable without <memory_resource>.
std::pmr::map<int, int> m;
std::pmr::multimap<int, int> mm;
}
return 0;
}