test support for overloaded procedures
[libt2n] / example-codegen / client.cpp
index 97d309e..260a60c 100644 (file)
@@ -28,6 +28,7 @@ int main(int argc, char** argv)
           && ( cc.testfunc("hello") == "hello, testfunc() was here" )
           && ( cc.testfunc_ref("hello") == "hello, testfunc() was here" )
           && ( cc.t2(10) == 10 )
-          && ( cc_other.t3(10, 20, "hello", std::pair<int, float>(10,20)) ) )
+          && ( cc_other.t3(10, 20, "hello", std::pair<int, float>(10,20)) )
+          && ( cc_other.t3(10) == 10 ) )
     ? EXIT_SUCCESS : EXIT_FAILURE;
 }