]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/assert/test/quick.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / assert / test / quick.cpp
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
14 int main()
15 {
16 int x = 1;
17 BOOST_ASSERT( x == 1 );
18 }