]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/utility/test/value_init_test_fail1.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / utility / test / value_init_test_fail1.cpp
1 // Copyright 2002, Fernando Luis Cacciola Carballal.
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See
4 // accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // Test program for "boost/utility/value_init.hpp"
8 //
9 // Initial: 21 Agu 2002
10
11 #include <iostream>
12 #include <string>
13
14 #include "boost/utility/value_init.hpp"
15
16 #ifdef __BORLANDC__
17 #pragma hdrstop
18 #endif
19
20 #include "boost/test/minimal.hpp"
21
22 int test_main(int, char **)
23 {
24 boost::value_initialized<int> const x_c ;
25
26 get(x_c) = 1234 ; // this should produce an ERROR
27
28 return 0;
29 }
30
31
32 unsigned int expected_failures = 0;
33
34
35
36
37