swig/Examples/test-suite/null_pointer.i
2017-06-16 19:24:48 +01:00

14 lines
128 B
OpenEdge ABL

%module null_pointer
%inline {
struct A {};
bool funk(A* a) {
return !a;
}
A* getnull() {
return 0;
}
}