Files
boost-ci/test/test.cpp
Alexander Grund af9e44d4c5 Improve yml files (#53)
* Remove templates
* Update appveyor configs
* Deduplicate os:linux from travis
* Add more configs to travis
* Add clang-9
* Fix failure of codecov job
* Move template readme
* Move VS 2013 test (older do not support 64bit)
2020-04-10 20:32:19 +02:00

16 lines
441 B
C++

//
// Copyright (c) 2020 Mateusz Loskot <mateusz@loskot.net>
//
// Use, modification and distribution is 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/boost-ci/boost_ci.hpp>
#include <boost/core/lightweight_test.hpp>
int main()
{
BOOST_TEST_EQ(boost::boost_ci::get_answer(), 42);
return boost::report_errors();
}