Files
contract/test/free_function/set_post_post_error.cpp

13 lines
242 B
C++

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