aboutsummaryrefslogtreecommitdiff
path: root/test/std/utilities/memory/unique.ptr/unique.ptr.single/pointer_type.pass.cpp
blob: 380f2e100eb6e18fca330a39931003c8f8bbba80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//===----------------------------------------------------------------------===//
//
//                     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>

// unique_ptr

// Test unique_ptr::pointer type

#include <memory>
#include <type_traits>

#include "test_macros.h"

struct Deleter
{
    struct pointer {};
};

struct D2 {
private:
    typedef void pointer;
};

struct D3 {
    static long pointer;
};

int main()
{
    {
    typedef std::unique_ptr<int> P;
    static_assert((std::is_same<P::pointer, int*>::value), "");
    }
    {
    typedef std::unique_ptr<int, Deleter> P;
    static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
    }
#if TEST_STD_VER >= 11
    {
    typedef std::unique_ptr<int, D2> P;
    static_assert(std::is_same<P::pointer, int*>::value, "");
    }
    {
    typedef std::unique_ptr<int, D3> P;
    static_assert(std::is_same<P::pointer, int*>::value, "");
    }
#endif
}