quick.cpp 336 B

123456789101112131415161718
  1. //
  2. // quick.cpp - a quick test for boost/assert.hpp
  3. //
  4. // Copyright 2017 Peter Dimov
  5. //
  6. // Distributed under the Boost Software License, Version 1.0.
  7. //
  8. // See accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt
  10. //
  11. #include <boost/assert.hpp>
  12. int main()
  13. {
  14. int x = 1;
  15. BOOST_ASSERT( x == 1 );
  16. }