1 // bindgen-flags: -- -std=c++14
2 
3 template <typename T>
4 class BaseIgnoresT {
5     int x;
6 };
7 
8 template <typename U>
9 class CrtpIgnoresU : public BaseIgnoresT<CrtpIgnoresU<U>> {
10     int y;
11 };
12