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