aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/errors/c_redefine_typedef.i
blob: 0829eadb3141c294f8467413855d1e408d307e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%module xxx


struct Hello;
struct Hello;

struct MyStruct {
  int x;
};
struct MyStruct {
  int x;
};

typedef int Int;
typedef int Int;