swig/Examples/test-suite/null_pointer.i

15 lines
128 B
OpenEdge ABL

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