summaryrefslogtreecommitdiff
path: root/Examples/test-suite/global_ns_arg.i
blob: 8bdb7e5123bcf2b999b48169ce8417ac730b3827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%module global_ns_arg

%inline %{

typedef int Integer;

::Integer foo(::Integer x) {
   return x;
}

::Integer bar_fn() {
   return 1;
}

%}