Added extra test-case

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4676 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-04-11 16:26:10 +00:00
commit 07e923c024

View file

@ -15,6 +15,7 @@
{
return 2;
}
int f(int min) { return min; }
%}
#define ARITH_RTYPE(A1, A2) A2
@ -38,3 +39,6 @@ ARITH_RTYPE(double,int) hello1();
//
HELLO_TYPE(double,int) hello2();
#define min(x,y) ((x) < (y)) ? (x) : (y)
int f(int min);