/*============================================================================= Copyright (C) 1999-2003 Jaakko Järvi Copyright (c) 2003 Joel de Guzman 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) ==============================================================================*/ #include #include #include #include #include namespace { // something to prevent warnings for unused variables template void dummy(const T&) {} // no public default constructor class foo { public: explicit foo(int v) : val(v) {} bool operator==(const foo& other) const { return val == other.val; } private: foo() {} int val; }; } int main() { using namespace boost::fusion; int a; char b; foo c(5); tie(a, b, c) = make_tuple(2, 'a', foo(3)); BOOST_TEST(a == 2); BOOST_TEST(b == 'a'); BOOST_TEST(c == foo(3)); tie(a, ignore, c) = make_tuple((short int)5, false, foo(5)); BOOST_TEST(a == 5); BOOST_TEST(b == 'a'); BOOST_TEST(c == foo(5)); // testing assignment from std::pair int i, j; tie (i, j) = std::make_pair(1, 2); BOOST_TEST(i == 1 && j == 2); tuple ta; #ifdef E11 ta = std::make_pair(1, 2); // should fail, tuple is of length 3, not 2 #endif dummy(ta); // ties cannot be rebound int d = 3; tuple ti(a); BOOST_TEST(&get<0>(ti) == &a); ti = tuple(d); BOOST_TEST(&get<0>(ti) == &a); return boost::report_errors(); }