1/*==============================================================================
2 Copyright (c) 2004, 2005, 2009 Peter Dimov
3 Copyright (c) 2005-2010 Joel de Guzman
4 Copyright (c) 2010 Thomas Heller
5
6 Distributed under the Boost Software License, Version 1.0. (See accompanying
7 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8==============================================================================*/
9
10#include <boost/config.hpp>
11
12#if defined(BOOST_MSVC)
13#pragma warning(disable: 4786) // identifier truncated in debug info
14#pragma warning(disable: 4710) // function not inlined
15#pragma warning(disable: 4711) // function selected for automatic inline expansion
16#pragma warning(disable: 4514) // unreferenced inline removed
17#endif
18
19#include <boost/phoenix/core.hpp>
20#include <boost/phoenix/bind.hpp>
21#include <boost/function_equal.hpp>
22#include <boost/detail/lightweight_test.hpp>
23
24void f( int )
25{
26}
27
28int g( int i )
29{
30 return i + 5;
31}
32
33template< class F > void test_self_equal( F f )
34{
35#ifdef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
36 using boost::function_equal;
37#endif
38
39 BOOST_TEST( function_equal( f, f ) );
40}
41
42int main()
43{
44 using boost::phoenix::bind;
45 using boost::phoenix::placeholders::_1;
46
47 test_self_equal( f: bind( f, a: _1 ) );
48 test_self_equal( f: bind( f: g, a: _1 ) );
49 test_self_equal( f: bind( f, a: bind( f: g, a: _1 ) ) );
50
51 return boost::report_errors();
52}
53

source code of boost/libs/phoenix/test/boost_bind_compatibility/bind_eq2_test.cpp