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 tester()18tester() 19 { 20 using namespace boost; 21 (void) to_string(n1::c1()); 22 return 1; 23 } 24