From 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 20:24:20 +0200 Subject: Adding upstream version 14.2.21. Signed-off-by: Daniel Baumann --- src/boost/libs/contract/test/invariant/mutable.hpp | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/boost/libs/contract/test/invariant/mutable.hpp (limited to 'src/boost/libs/contract/test/invariant/mutable.hpp') diff --git a/src/boost/libs/contract/test/invariant/mutable.hpp b/src/boost/libs/contract/test/invariant/mutable.hpp new file mode 100644 index 00000000..0940bc98 --- /dev/null +++ b/src/boost/libs/contract/test/invariant/mutable.hpp @@ -0,0 +1,28 @@ + +// no #include guard + +// Copyright (C) 2008-2018 Lorenzo Caminiti +// Distributed under the Boost Software License, Version 1.0 (see accompanying +// file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt). +// See: http://www.boost.org/doc/libs/release/libs/contract/doc/html/index.html + +// Test error if non-static inv declared mutable (unless PERMISSIVE #defined). + +#include +#include + +struct a { + void invariant() {} + + void f() { + // Same for ctor and dtor (because they all use check_pre_post_inv). + boost::contract::check c = boost::contract::public_function(this); + } +}; + +int main() { + a aa; + aa.f(); + return 0; +} + -- cgit v1.2.3