[OpenACC] Implement 'device_type' for 'data' construct
[llvm-project.git] / libcxx / test / std / utilities / utility / mem.res / mem.res.aliases / header_map_synop2.pass.cpp
blob5229805ee931f6df43c5852c24c5b8acec7d98e9
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03, c++11, c++14
10 // TODO: Change to XFAIL once https://github.com/llvm/llvm-project/issues/40340 is fixed
11 // UNSUPPORTED: availability-pmr-missing
13 // <map>
15 // namespace std::pmr {
17 // typedef ... map
19 // } // namespace std::pmr
21 #include <map>
23 int main(int, char**) {
25 // Check that std::pmr::map is usable without <memory_resource>.
26 std::pmr::map<int, int> m;
27 std::pmr::multimap<int, int> mm;
30 return 0;