summaryrefslogtreecommitdiff
path: root/tests/headers/template-param-usage-13.hpp
blob: 87db1a10e1625b2ffb466e48fe24da5d09983bbb (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 CrtpUsesU : public BaseIgnoresT<CrtpUsesU<U>> {
    U usage;
};