]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/config/test/boost_no_auto_declarations.ipp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / config / test / boost_no_auto_declarations.ipp
1 // Copyright (C) 2009 Andrey Semashev
2 // Copyright (C) 2017 Dynatrace
3 // Use, modification and distribution are subject to the
4 // Boost Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7 // See http://www.boost.org/libs/config for most recent version.
8
9 // MACRO: BOOST_NO_CXX11_AUTO_DECLARATIONS
10 // TITLE: C++0x auto declarators unavailable
11 // DESCRIPTION: The compiler does not support C++0x declarations of variables with automatically deduced type
12
13 namespace boost_no_cxx11_auto_declarations {
14
15 void check_f(short&)
16 {
17 }
18
19 int test()
20 {
21 auto x = static_cast<short>(10);
22 check_f(x);
23 return 0;
24 }
25
26 }