summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/vmd/test/test_doc_empty_fail7.cxx
blob: 8687a2b4a31e833016996afa156973fa9bdd0ec8 (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
26
27
28
29
30
31
32
//  (C) Copyright Edward Diener 2011-2015,2019
//  Use, modification and distribution are 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 <boost/vmd/is_empty.hpp>
#include <boost/preprocessor/variadic/has_opt.hpp>
#include <boost/detail/lightweight_test.hpp>

int main()
  {
  
#if BOOST_PP_VARIADICS

#if !BOOST_VMD_MSVC && !BOOST_PP_VARIADIC_HAS_OPT()

  #define FMACRO6(param1,param2) ( any_number_of_tuple_elements )
  
  BOOST_TEST(!BOOST_VMD_IS_EMPTY(FMACRO6));
 
#else
  
  typedef char BOOST_VMD_GENERATE_ERROR[-1];
   
#endif

#endif

  return boost::report_errors();
  
  }