mirror of
https://github.com/boostorg/assert.git
synced 2026-01-26 09:02:19 +01:00
8 lines
80 B
C++
8 lines
80 B
C++
#include <boost/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
int x = 5;
|
|
BOOST_ASSERT( x > 4 );
|
|
}
|