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