to_string_fail.cpp 426 B

1234567891011121314151617181920212223
  1. //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #include <boost/exception/to_string.hpp>
  5. namespace
  6. n1
  7. {
  8. struct
  9. c1
  10. {
  11. };
  12. }
  13. int
  14. tester()
  15. {
  16. using namespace boost;
  17. (void) to_string(n1::c1());
  18. return 1;
  19. }