git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12108 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
181 B
OpenEdge ABL
12 lines
181 B
OpenEdge ABL
%module null_pointer
|
|
|
|
%warnfilter(SWIGWARN_PARSE_KEYWORD) func; // 'func' is a Go keyword, renamed as 'Xfunc'
|
|
|
|
%inline {
|
|
struct A {};
|
|
|
|
bool func(A* a) {
|
|
return !a;
|
|
}
|
|
}
|
|
|