aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/errors/cpp_private_inherit.i
blob: e8267e98f4f1bb54b081356d28544090c8244f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
%module xxx

class Foo {
};

class Bar : private Foo {
};

class Spam : protected Foo {
};