Compile time regression test for https://github.com/nodejs/nan/issues/242 * In the presence of overloaded functions NaN should be able to pick the one * matching FunctionCallback. */
| 405 | * matching FunctionCallback. |
| 406 | */ |
| 407 | void overloaded() {} |
| 408 | NAN_METHOD(overloaded) { |
| 409 | overloaded(); // not unused |
| 410 | info.GetReturnValue().SetUndefined(); |