summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/inner-typedef-gh422.hpp
blob: 301630a5e0c65a6208d01a12cb326bf2bfa8805a (plain)
1
2
3
4
5
6
7
8
9
10
11
template <typename T>
class Foo {
public:
    class InnerType {
        T t;
    };
};

typedef Foo<int>::InnerType Bar;

Bar func();