Files
yuzu/externals/vcpkg/buildtrees/boost-thread/src/ost-1.79.0-518d8082f0.clean/test/test_13561.cpp
2022-11-05 15:35:56 +01:00

18 lines
432 B
C++
Executable File

// Copyright (C) 2018 Vicente Botet
//
// Distributed under 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)
#define BOOST_THREAD_VERSION 4
#include <boost/thread/detail/nullary_function.hpp>
#include <boost/system/detail/error_code.ipp>
int main(int argc, char* argv[])
{
boost::detail::nullary_function<void ()> f1;
auto f2 = f1;
}