blob: 7b71406af9307b6d1174d395c8c6b617075c897f [file] [log] [blame]
Junxiao Shi95fdebe2014-11-08 23:45:03 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento74daf742018-11-23 18:14:13 -05002/*
Davide Pesavento78338c52020-04-20 23:00:02 -04003 * Copyright (c) 2013-2020 Regents of the University of California.
Junxiao Shi95fdebe2014-11-08 23:45:03 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22// Bug 2109 test case
23
Davide Pesavento78338c52020-04-20 23:00:02 -040024// interest.hpp includes common.hpp; common.hpp is an implementation detail and should not
25// be directly included from an external program
Davide Pesavento7e780642018-11-24 15:51:34 -050026#include "ndn-cxx/interest.hpp"
Junxiao Shi95fdebe2014-11-08 23:45:03 -070027
Davide Pesavento78338c52020-04-20 23:00:02 -040028#include <boost/bind/bind.hpp>
Junxiao Shi95fdebe2014-11-08 23:45:03 -070029
30void
Davide Pesavento78338c52020-04-20 23:00:02 -040031placeholders2TestFunction(int)
Junxiao Shi95fdebe2014-11-08 23:45:03 -070032{
33}
34
35int
36placeholders2TestMain()
37{
38 auto f = boost::bind(&placeholders2TestFunction, _1);
39 f(1);
40 return 0;
41}