summaryrefslogtreecommitdiff
path: root/tests/headers/class_nested.hpp
blob: e9c07d6437b05b84bc8c314ab660d6a3d86a327b (plain)
1
2
3
4
5
6
7
class A {
    int member_a;
    class B {
        int member_b;
    };
};