Ticket #3305: test.cpp
File test.cpp, 302 bytes (added by , 13 years ago) |
---|
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 | |
6 | template<int i,class C> void F(C&){} |
7 | template<int i,class C> void F(C const&){} |
8 | |
9 | int main() |
10 | { |
11 | int i; |
12 | const int& a=i; |
13 | F<0>(a); |
14 | } |