container_no_fwd_test.cpp 337 B

1234567891011121314
  1. // Copyright 2010 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. #define BOOST_DETAIL_NO_CONTAINER_FWD
  5. #include <boost/detail/container_fwd.hpp>
  6. int main()
  7. {
  8. std::set<int> x;
  9. std::vector<std::string> y;
  10. }