summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/type_erasure/test/fail_construct_mismatch_rref.cpp
blob: fa80fde40692de0951e1e94c0fb76a0568fbc978 (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
// Boost.TypeErasure library
//
// Copyright 2012 Steven Watanabe
//
// Distributed under 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)
//
// $Id$

#include <boost/type_erasure/any.hpp>
#include <boost/type_erasure/builtin.hpp>
#include <boost/mpl/map.hpp>

using namespace boost::type_erasure;
namespace mpl = boost::mpl;

int main()
{
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
    any<copy_constructible<>, _self&&> x(1, make_binding<mpl::map<mpl::pair<_self, char> > >());
#else
#   error "No support for rvalue-reference is enabled. ==> Test fails (as expected) by default!"
#endif
}