summaryrefslogtreecommitdiff
path: root/trunk/Examples/test-suite/null_pointer.i
blob: 59d554c2b366091fbabdb2cf61df88b5e10f23a3 (plain)
1
2
3
4
5
6
7
8
9
10
%module null_pointer

%inline {
  struct A {};
  
  bool func(A* a) {
    return !a;
  }
}