2
0
mirror of https://github.com/boostorg/test.git synced 2026-02-19 02:42:13 +00:00
Files
test/doc/v2/snippet/snippet10.cpp
2014-01-27 02:16:48 +01:00

9 lines
159 B
C++

#include <my_class.hpp>
int main( int, char* [] )
{
my_class test_object( "qwerty" );
return test_object.is_valid() ? EXIT_SUCCESS : EXIT_FAILURE;
}