Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / third_party / libc++ / trunk / test / iterators / predef.iterators / insert.iterators / insert.iter.ops / inserter / test.pass.cpp
index 5707f9d..43f28d0 100644 (file)
@@ -16,6 +16,7 @@
 #include <iterator>
 #include <vector>
 #include <cassert>
 #include <iterator>
 #include <vector>
 #include <cassert>
+#include "nasty_containers.hpp"
 
 template <class C>
 void
 
 template <class C>
 void
@@ -30,4 +31,5 @@ test(C c)
 int main()
 {
     test(std::vector<int>());
 int main()
 {
     test(std::vector<int>());
+    test(nasty_vector<int>());
 }
 }