/trunk/Examples/test-suite/errors/cpp_nested.i

# · Swig · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · 8ae097896e72cdb859d7830689e1217b MD5 · raw file

  1. %module xxx
  2. class Foo {
  3. public:
  4. class Bar {
  5. };
  6. };
  7. class Spam {
  8. public:
  9. class Grok {
  10. } x;
  11. };