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