import source from 1.3.40
[external/swig.git] / Examples / test-suite / errors / cpp_private_inherit.i
1 %module xxx
2
3 class Foo {
4 };
5
6 class Bar : private Foo {
7 };
8
9 class Spam : protected Foo {
10 };
11