]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/thread/test/test_13561.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / thread / test / test_13561.cpp
1 // Copyright (C) 2018 Vicente Botet
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 #define BOOST_THREAD_VERSION 4
7
8 #include <boost/thread/detail/nullary_function.hpp>
9 #include <boost/system/detail/error_code.ipp>
10
11 int main(int argc, char* argv[])
12 {
13 boost::detail::nullary_function<void ()> f1;
14 auto f2 = f1;
15 }
16
17