| 146 | // ---------------------------------------------------------------------------------------- |
| 147 | |
| 148 | void run_test2() |
| 149 | { |
| 150 | any_function<int(int,int)> f = &add; |
| 151 | |
| 152 | DLIB_TEST(f(1,3) == 4); |
| 153 | |
| 154 | any_function<string(string,string)> g(&cat); |
| 155 | DLIB_TEST(g("one", "two") == "onetwo"); |
| 156 | } |
| 157 | |
| 158 | // ---------------------------------------------------------------------------------------- |
| 159 |