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

template <typename T>
class BaseUsesT {
    T* usage;
};

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