• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 // Copyright 2006-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 // clang-format off
7 #include "../helpers/prefix.hpp"
8 #include <boost/unordered_set.hpp>
9 #include <boost/unordered_map.hpp>
10 #include "../helpers/postfix.hpp"
11 // clang-format on
12 
13 void foo(boost::unordered_set<int>&, boost::unordered_map<int, int>&,
14   boost::unordered_multiset<int>&, boost::unordered_multimap<int, int>&);
15 
main()16 int main()
17 {
18   boost::unordered_set<int> x1;
19   boost::unordered_map<int, int> x2;
20   boost::unordered_multiset<int> x3;
21   boost::unordered_multimap<int, int> x4;
22 
23   foo(x1, x2, x3, x4);
24 
25   return 0;
26 }
27