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

class Foo {
public:
    class Bar {
    };
};

class Spam {
public:
    class Grok {
    } x;
};