summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/callable_traits/test/is_rvalue_reference_member.cpp
blob: 6eaa2e9ccdecbf6ea14624a54ddff62a7df75c7f (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
Copyright Barrett Adair 2016-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http ://boost.org/LICENSE_1_0.txt)
*/

#include <type_traits>
#include <functional>
#include <utility>
#include <boost/callable_traits/is_rvalue_reference_member.hpp>
#include "test.hpp"


#ifdef BOOST_CLBL_TRTS_DISABLE_REFERENCE_QUALIFIERS
int main(){ return 0; }
#else

struct foo {};

template<typename T>
void assert_rvalue_qualified() {
    
    CT_ASSERT( is_rvalue_reference_member<T>());
}


template<typename T>
void assert_not_rvalue_qualified() {
    
    CT_ASSERT(! is_rvalue_reference_member<T>());
}

int main() {

    {
        using f   = void(foo::*)();
        using l   = void(foo::*)() &;
        using r   = void(foo::*)() && ;
        using c   = void(foo::*)() const;
        using cl  = void(foo::*)() const &;
        using cr  = void(foo::*)() const &&;
        using v   = void(foo::*)() volatile;
        using vl  = void(foo::*)() volatile &;
        using vr  = void(foo::*)() volatile &&;
        using cv  = void(foo::*)() const volatile;
        using cvl = void(foo::*)() const volatile &;
        using cvr = void(foo::*)() const volatile &&;

        assert_not_rvalue_qualified<f>();
        assert_not_rvalue_qualified<l>();
        assert_rvalue_qualified<r>();
        assert_not_rvalue_qualified<c>();
        assert_not_rvalue_qualified<cl>();
        assert_rvalue_qualified<cr>();
        assert_not_rvalue_qualified<v>();
        assert_not_rvalue_qualified<vl>();
        assert_rvalue_qualified<vr>();
        assert_not_rvalue_qualified<cv>();
        assert_not_rvalue_qualified<cvl>();
        assert_rvalue_qualified<cvr>();
    }

    {
        struct f   { int operator()() { return 0; } };
        struct l   { int operator()() & { return 0; } };
        struct r   { int operator()() && { return 0; } };
        struct c   { int operator()() const { return 0; } };
        struct cl  { int operator()() const & { return 0; } };
        struct cr  { int operator()() const && { return 0; } };
        struct v   { int operator()() volatile { return 0; } };
        struct vl  { int operator()() volatile & { return 0; } };
        struct vr  { int operator()() volatile && { return 0; } };
        struct cv  { int operator()() const volatile { return 0; } };
        struct cvl { int operator()() const volatile & { return 0; } };
        struct cvr { int operator()() const volatile && { return 0; } };

        assert_not_rvalue_qualified<f>();
        assert_not_rvalue_qualified<l>();
        assert_rvalue_qualified<r>();
        assert_not_rvalue_qualified<c>();
        assert_not_rvalue_qualified<cl>();
        assert_rvalue_qualified<cr>();
        assert_not_rvalue_qualified<v>();
        assert_not_rvalue_qualified<vl>();
        assert_rvalue_qualified<vr>();
        assert_not_rvalue_qualified<cv>();
        assert_not_rvalue_qualified<cvl>();
        assert_rvalue_qualified<cvr>();
    }

    {
        using f   = void();
        using l   = void() &;
        using r   = void() && ;
        using c   = void() const;
        using cl  = void() const &;
        using cr  = void() const &&;
        using v   = void() volatile;
        using vl  = void() volatile &;
        using vr  = void() volatile &&;
        using cv  = void() const volatile;
        using cvl = void() const volatile &;
        using cvr = void() const volatile &&;

        CT_ASSERT(! is_rvalue_reference_member<f>());
        CT_ASSERT(! is_rvalue_reference_member<l>());
        CT_ASSERT( is_rvalue_reference_member<r>());
        CT_ASSERT(! is_rvalue_reference_member<c>());
        CT_ASSERT(! is_rvalue_reference_member<cl>());
        CT_ASSERT( is_rvalue_reference_member<cr>());
        CT_ASSERT(! is_rvalue_reference_member<v>());
        CT_ASSERT(! is_rvalue_reference_member<vl>());
        CT_ASSERT( is_rvalue_reference_member<vr>());
        CT_ASSERT(! is_rvalue_reference_member<cv>());
        CT_ASSERT(! is_rvalue_reference_member<cvl>());
        CT_ASSERT( is_rvalue_reference_member<cvr>());
    }

    using f_ptr = void(*)();
    assert_not_rvalue_qualified<f_ptr>();
    assert_not_rvalue_qualified<f_ptr foo::*>();
    assert_not_rvalue_qualified<int foo::*>();
    assert_not_rvalue_qualified<void(&)()>();
}

#endif //#ifdef BOOST_CLBL_TRTS_DISABLE_REFERENCE_QUALIFIERS