Files
contract/test/free_function/set_pre_post_pre_error.cpp

14 lines
271 B
C++

#include <boost/contract/free_function.hpp>
#include <boost/contract/type.hpp>
int main() {
boost::contract::type c = boost::contract::free_function()
.precondition([&] {})
.postcondition([&] {})
.precondition([&] {})
;
return 0;
}