2021-10-05 21:37:46 +02:00

8 lines
106 B
C++

#include <boost/static_assert.hpp>
int main()
{
int const x = 5;
BOOST_STATIC_ASSERT( x > 4 );
}