where_fail.cpp 324 B

12345678910111213
  1. // Copyright David Abrahams 2006. Distributed under the Boost
  2. // 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 <list>
  5. #undef NDEBUG
  6. #include "fake_sort.hpp"
  7. int main()
  8. {
  9. std::list<int> v;
  10. fake::sort(v.begin(), v.end());
  11. return 0;
  12. }