aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/static_cast.C
blob: f4c334eaf5dae69f97c2df7b4a8c50fbcb764cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Build don't link:

template <class InputIterator, class BinaryOperation>
void accumulate(InputIterator first, 
    	         BinaryOperation binary_op) {
}


template<class R> int p( int val, R& r )
{
   return val + r;
}

template<class R> void f(R)
{
   accumulate(0, static_cast<int (*)(int, R&)>(p) );
}

main()
{
   f(0);
}