aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/bool_default.i
blob: b04035c1a14c6b1e8efaff3f14d3cc414aaddacd (plain)
1
2
3
4
5
6
7
8
9
// [ 548272] Default arguments
%module bool_default

%inline %{

bool foo(bool x = true) {
   return !x;
}
%}