mirror of
https://github.com/boostorg/contract.git
synced 2026-02-27 17:02:15 +00:00
14 lines
271 B
C++
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;
|
|
}
|
|
|