Files

15 lines
128 B
OpenEdge ABL
Raw Permalink Normal View History

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