namespace_fail_test.cpp 398 B

12345678910111213141516
  1. // Copyright 2009 Daniel James.
  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. // Check that I haven't inadvertantly pulled namespace std into the global
  5. // namespace.
  6. #include "./config.hpp"
  7. #include <list>
  8. #include <boost/container_hash/hash.hpp>
  9. typedef list<int> foo;
  10. int main() {}