1 
2 // Copyright (C) 2009-2012 Lorenzo Caminiti
3 // Distributed under the Boost Software License, Version 1.0
4 // (see accompanying file LICENSE_1_0.txt or a copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 // Home at http://www.boost.org/libs/local_function
7 
8 #include <boost/local_function.hpp>
9 #include <boost/detail/lightweight_test.hpp>
10 
11 #define WITH_DEFAULT )(default
12 
main(void)13 int main(void) {
14     int BOOST_LOCAL_FUNCTION( (int x) (int y WITH_DEFAULT 2) ) {
15         return x + y;
16     } BOOST_LOCAL_FUNCTION_NAME(add)
17 
18     BOOST_TEST(add(1) == 3);
19     return boost::report_errors();
20 }
21 
22