a26ce80291
[SVN r44198]
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
/*=============================================================================
|
|
Phoenix V1.2.1
|
|
Copyright (c) 2001-2003 Joel de Guzman
|
|
Copyright (c) 2003 Vaclav Vesely
|
|
|
|
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 <iostream>
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
#define PHOENIX_LIMIT 15
|
|
#include <boost/spirit/include/phoenix1_primitives.hpp>
|
|
#include <boost/spirit/include/phoenix1_new.hpp>
|
|
|
|
using namespace phoenix;
|
|
using namespace std;
|
|
|
|
class X
|
|
{
|
|
public:
|
|
X(int i_ = 1)
|
|
: i(i_)
|
|
{}
|
|
|
|
int i;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
int
|
|
main()
|
|
{
|
|
int i2 = 2;
|
|
X x3(3);
|
|
|
|
BOOST_TEST(new_<int>()() != NULL);
|
|
BOOST_TEST(*new_<int>(arg1)(i2) == 2);
|
|
|
|
BOOST_TEST(new_<X>()() != NULL);
|
|
BOOST_TEST(new_<X>()()->i == 1);
|
|
BOOST_TEST(new_<X>(arg1)(i2)->i == 2);
|
|
BOOST_TEST(new_<X>(arg1)(x3)->i == 3);
|
|
|
|
return boost::report_errors();
|
|
}
|