summaryrefslogtreecommitdiff
path: root/tests/headers/same_struct_name_in_different_namespaces.hpp
blob: fe6858458fffa77f0e3eaa7b6eccc4cf1a1192c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace JS {

    struct Zone;

    namespace shadow {

        struct Zone {
            int x;
            int y;
        };
    }
}