mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-21 00:12:05 +02:00
new tests
[SVN r15688]
This commit is contained in:
28
test/slot.cpp
Normal file
28
test/slot.cpp
Normal file
@ -0,0 +1,28 @@
|
||||
# /* **************************************************************************
|
||||
# * *
|
||||
# * (C) Copyright Paul Mensonides 2002. Permission to copy, use, *
|
||||
# * modify, sell, and distribute this software is granted provided *
|
||||
# * this copyright notice appears in all copies. This software is *
|
||||
# * provided "as is" without express or implied warranty, and with *
|
||||
# * no claim at to its suitability for any purpose. *
|
||||
# * *
|
||||
# ************************************************************************** */
|
||||
#
|
||||
# /* See http://www.boost.org for most recent version. */
|
||||
#
|
||||
# include <boost/preprocessor/slot.hpp>
|
||||
# include <libs/preprocessor/regression/test.h>
|
||||
|
||||
# define X() 4
|
||||
|
||||
# define BOOST_PP_VALUE 1 + 2 + 3 + X()
|
||||
# include BOOST_PP_ASSIGN_SLOT(1)
|
||||
|
||||
# undef X
|
||||
|
||||
BEGIN BOOST_PP_SLOT(1) == 10 END
|
||||
|
||||
# define BOOST_PP_VALUE BOOST_PP_SLOT(1) * BOOST_PP_SLOT(1)
|
||||
# include BOOST_PP_ASSIGN_SLOT(1)
|
||||
|
||||
BEGIN BOOST_PP_SLOT(1) == 100 END
|
Reference in New Issue
Block a user