blob: 8eacb29ec202745a58473bc8a4516960f631d0c9 [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
// <deque>
// namespace std::pmr {
//
// typedef ... deque
//
// } // namespace std::pmr
#include <deque>
int main(int, char**) {
{
// Check that std::pmr::deque is usable without <memory_resource>.
std::pmr::deque<int> d;
}
return 0;
}