summaryrefslogtreecommitdiff
path: root/Examples/test-suite/typedef_scope.i
blob: 5c04d6c5a8821b881ba02c35ca61e450ec36469e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Tests some subtle issues of typedef scoping in C++

%module typedef_scope

%inline %{

typedef char * FooType;
class Bar {
public:
     typedef int FooType;
     FooType test1(FooType n, ::FooType data) {
         return n;
     }
     ::FooType test2(FooType n, ::FooType data) {
         return data;
     }
};



class Foo
{
};

typedef Foo FooBar;

class CBaz
{
public:
  typedef FooBar Foo;
};


%}