summaryrefslogtreecommitdiff
path: root/tests/headers/template-param-usage-14.hpp
blob: 1901629656b223da0ae6df5f7904528bf1912150 (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: -- -std=c++14

template <typename T>
class BaseIgnoresT {
    int x;
};

template <typename U>
class CrtpIgnoresU : public BaseIgnoresT<CrtpIgnoresU<U>> {
    int y;
};