Ticket #12397: test_case.cpp

File test_case.cpp, 228 bytes (added by loonycyborg, 6 years ago)
Line 
1#include <functional>
2#include <boost/bind.hpp>
3
4namespace std {
5 template<int N>
6 struct is_placeholder<boost::arg<N>> : public integral_constant<int, N> {};
7}
8
9int foo(int i)
10{
11return i;
12}
13
14int main()
15{
16 std::bind(foo, _1);
17}