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

%inline %{
namespace ns {
  
  struct S1
  {
    int n;
  };

  typedef struct
  {
    int n;
  } S2;
}

%}