summaryrefslogtreecommitdiffstats
path: root/libcxx/test/utilities/memory/util.dynamic.safety/get_pointer_safety.pass.cpp
blob: 1f27b45e8ab8ef0a6eae79704f6faef91aac289a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// <memory>

// pointer_safety get_pointer_safety();

#include <memory>
#include <cassert>

int main()
{
    std::pointer_safety r = std::get_pointer_safety();
    assert(r == std::pointer_safety::relaxed ||
           r == std::pointer_safety::preferred ||
           r == std::pointer_safety::strict);
}
OpenPOWER on IntegriCloud