summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-544-stylo-creduce-2.hpp
blob: f3467f4528f92b359c8cf7ba1bad551ab26d1451 (plain)
1
2
3
4
5
6
7
8
// bindgen-flags: -- -std=c++14

template <typename T>
struct Foo {
    template <typename> using FirstAlias = typename T::Associated;
    template <typename U> using SecondAlias = Foo<FirstAlias<U>>;
    SecondAlias<int> member;
};