diff options
Diffstat (limited to 'Examples/test-suite/errors/cpp_private_inherit.i')
| -rw-r--r-- | Examples/test-suite/errors/cpp_private_inherit.i | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Examples/test-suite/errors/cpp_private_inherit.i b/Examples/test-suite/errors/cpp_private_inherit.i new file mode 100644 index 0000000..e8267e9 --- /dev/null +++ b/Examples/test-suite/errors/cpp_private_inherit.i @@ -0,0 +1,11 @@ +%module xxx + +class Foo { +}; + +class Bar : private Foo { +}; + +class Spam : protected Foo { +}; + |
