Files
boost_static_assert/test/cmake_install_test/main.cpp
T

8 lines
106 B
C++
Raw Normal View History

2019-12-26 19:05:07 +02:00
#include <boost/static_assert.hpp>
int main()
{
2019-12-29 18:47:06 +02:00
int const x = 5;
BOOST_STATIC_ASSERT( x > 4 );
2019-12-26 19:05:07 +02:00
}