summaryrefslogtreecommitdiff
path: root/tests/headers/class_with_inner_struct.hpp
blob: 40199ccc22695e283fc5223a533b4d3b4e6b729b (plain)
1
2
3
4
5
6
7
8
9
class A {
    unsigned c;
    struct Segment { int begin, end; };
};

class B {
    unsigned d;
    struct Segment { int begin, end; };
};