• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
12 #include <boost/assert.hpp>
13 
main()14 int main()
15 {
16     int x = 1;
17     BOOST_ASSERT( x == 1 );
18 }
19