Ticket #6732: join.cpp

File join.cpp, 406 bytes (added by y.hoshizuki, 11 years ago)

minimal test program

Line 
1// minimal test program.
2
3#include <boost/range/join.hpp>
4#include <boost/range/algorithm/count.hpp>
5
6void f() {
7 int a[] = { 0 };
8 boost::count( boost::join( a, a ), 0 );
9}
10
11/*
12 * compiler version
13 * - Microsoft Visual Studio 2010 SP1
14 *
15 * boost version
16 * - boost 1.48.0
17 *
18 * > cl /c /EHsc /W4 join.cpp
19 * boost/range/detail/join_iterator.hpp(114) : warning C4100: 'selected'
20 */