]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/contract/test/invariant/static_cv.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / contract / test / invariant / static_cv.hpp
CommitLineData
11fdf7f2
TL
1
2// no #include guard
3
4// Copyright (C) 2008-2018 Lorenzo Caminiti
5// Distributed under the Boost Software License, Version 1.0 (see accompanying
6// file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt).
7// See: http://www.boost.org/doc/libs/release/libs/contract/doc/html/index.html
8
9// Test error if static inv declared cv (unless PERMISSIVE #defined).
10
11#include <boost/contract/public_function.hpp>
12#include <boost/contract/check.hpp>
13
14struct a {
15 void static_invariant() const volatile {}
16
17 void f() {
18 // Same for ctor and dtor (because they all use check_pre_post_inv).
19 boost::contract::check c = boost::contract::public_function(this);
20 }
21};
22
23int main() {
24 a aa;
25 aa.f();
26 return 0;
92f5a8d4 27}
11fdf7f2 28