swig/Examples/test-suite/c/cpp_basic_template_function_runme.c
Vadim Zeitlin af9dd72bb6 Fix function name in cpp_basic_template_function test
Use "_wrap_" prefix to make the test compile and pass.
2016-04-21 01:37:40 +02:00

8 lines
169 B
C

#include <assert.h>
#include "cpp_basic_template_function/cpp_basic_template_function_wrap.h"
int main() {
assert(_wrap_GetMaxInt(3, 5) == 5);
return 0;
}