git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12527 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
308 B
OpenEdge ABL
13 lines
308 B
OpenEdge ABL
%module xxx
|
|
|
|
void check(const int *v) {}
|
|
void check(int *v) {}
|
|
void check(int &v) {}
|
|
void check(const int &v) {} // note: no warning as marshalled by value
|
|
|
|
struct OverStruct {};
|
|
void check(const OverStruct *v) {}
|
|
void check(OverStruct *v) {}
|
|
void check(OverStruct &v) {}
|
|
void check(const OverStruct &v) {}
|
|
|