summaryrefslogtreecommitdiff
path: root/Examples/test-suite/errors/cpp_overload.i
blob: 34fa3cc25e43b5857be67c6f7f7dede820deefd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%module xxx
int foo(int x);
int foo(double x);

class Foo {
public:
    int bar(int);
    int bar(double);
};

class Spam {
public:
    Spam();
    Spam(int);
};