DarkSharpness commented on PR #286: URL: https://github.com/apache/tvm-ffi/pull/286#issuecomment-3598440274
cc @junrushao . Now got following error message for mismatched arg type: ``` C++ exception with description "No matching overload found when calling: `test.TestOverloadObj.hold_same_type` with 2 arguments: Overload #0: Mismatched type on argument #1 when calling: `test.TestOverloadObj.hold_same_type (0: test.TestOverloadObj, 1: int) -> bool`. Expected `int` but got `const char*` Overload #1: Mismatched type on argument #1 when calling: `test.TestOverloadObj.hold_same_type (0: test.TestOverloadObj, 1: float) -> bool`. Expected `float` but got `const char*` ``` for mismatched arg number: ``` C++ exception with description "No matching overload found when calling: `test.TestOverloadObj.hold_same_type` with 1 arguments: Overload #0: Mismatched number of arguments when calling: `test.TestOverloadObj.hold_same_type (0: test.TestOverloadObj, 1: int) -> bool`. Expected 2 arguments Overload #1: Mismatched number of arguments when calling: `test.TestOverloadObj.hold_same_type (0: test.TestOverloadObj, 1: float) -> bool`. Expected 2 arguments ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
