forked from boostorg/assert
8 lines
80 B
C++
8 lines
80 B
C++
#include <boost/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
int x = 5;
|
|
BOOST_ASSERT( x > 4 );
|
|
}
|