]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/exception/test/to_string_fail.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / exception / test / to_string_fail.cpp
1 //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2
3 //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 #include <boost/exception/to_string.hpp>
7
8 namespace
9 n1
10 {
11 struct
12 c1
13 {
14 };
15 }
16
17 int
18 tester()
19 {
20 using namespace boost;
21 (void) to_string(n1::c1());
22 return 1;
23 }