Ticket #3305: test.cpp

File test.cpp, 302 bytes (added by Christopher Schmidt, 13 years ago)

testcase

Line 
1#include <boost/config.hpp>
2#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
3# error BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS not defined!
4#endif
5
6template<int i,class C> void F(C&){}
7template<int i,class C> void F(C const&){}
8
9int main()
10{
11 int i;
12 const int& a=i;
13 F<0>(a);
14}