Ticket #1300: Test.cpp

File Test.cpp, 157 bytes (added by boris@…, 15 years ago)

Test case reproducing the problem

Line 
1#include <boost/function.hpp>
2
3void foo()
4{
5}
6
7void bar()
8{
9}
10
11int main()
12{
13 boost::function<void ()> f = &foo, b = &bar;
14 f == b;
15}