summaryrefslogtreecommitdiff
path: root/libs/optional/test/optional_test_the_compiler.cpp
blob: dea10cb3c5046290f8eff99c09481ef555404f87 (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
// Copyright (C) 2014 Andrzej Krzemienski.
//
// Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/lib/optional for documentation.
//
// You are welcome to contact the author at:
//  akrzemi1@gmail.com
//
// Revisions:
//
#include<iostream>
#include<stdexcept>
//#include<string>

#define BOOST_ENABLE_ASSERT_HANDLER

//#include "boost/bind/apply.hpp" // Included just to test proper interaction with boost::apply<> as reported by Daniel Wallin
#include "boost/mpl/bool.hpp"
#include "boost/mpl/bool_fwd.hpp"  // For mpl::true_ and mpl::false_
#include "boost/static_assert.hpp"

#include "boost/optional/optional.hpp"

#ifdef __BORLANDC__
#pragma hdrstop
#endif

#include "boost/test/minimal.hpp"
#include "optional_test_common.cpp"


const int global_i = 0;

class TestingReferenceBinding
{
public:
    TestingReferenceBinding(const int& ii)
    {
        BOOST_CHECK(&ii == &global_i);
    }
    
    void operator=(const int& ii) 
    {
        BOOST_CHECK(&ii == &global_i);
    }
    #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
    void operator=(int&&) 
    { 
        BOOST_CHECK(false);
    }
    #endif
};

class TestingReferenceBinding2 // same definition as above, I need a different type
{
public:
    TestingReferenceBinding2(const int& ii)
    {
        BOOST_CHECK(&ii == &global_i);
    }
    
    void operator=(const int& ii) 
    {
        BOOST_CHECK(&ii == &global_i);
    }
    #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
    void operator=(int&&) 
    { 
        BOOST_CHECK(false);
    }
    #endif
};


void test_broken_compiler()
{
// we are not testing boost::optional here, but the c++ compiler
// if this test fails, optional references will obviously fail too

  const int& iref = global_i;
  BOOST_CHECK(&iref == &global_i);
  
  TestingReferenceBinding ttt = global_i;
  ttt = global_i;
  
  TestingReferenceBinding2 ttt2 = iref;
  ttt2 = iref;
}


int test_main( int, char* [] )
{
  try
  {
    test_broken_compiler();
  }
  catch ( ... )
  {
    BOOST_ERROR("Unexpected Exception caught!");
  }

  return 0;
}