summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-2239-template-dependent-bit-width.hpp
blob: 4e6feb3f1ec2b240b171ec33d9dc6fff54c96123 (plain)
1
2
3
4
5
6
7
8
9
10
template <class a> class b {
    typedef a td;
    using ta = a;
    struct foo {
        a foo : sizeof(a);
        a : sizeof(a);
        td : sizeof(td);
        ta : sizeof(ta);
    };
};