Ticket #1992: mpl-zip_view-bug.cpp

File mpl-zip_view-bug.cpp, 164 bytes (added by John Bytheway <jbytheway@…>, 14 years ago)
Line 
1#include <boost/mpl/zip_view.hpp>
2#include <boost/mpl/vector.hpp>
3
4using namespace boost::mpl;
5
6typedef zip_view<vector<> >::type zip;
7
8int main()
9{
10 return 0;
11}
12