1 // bindgen-flags: -- -std=c++14
2 
3 template <typename T, typename U, typename V>
4 class DoesNotUseU {
5     T t;
6     V v;
7 };
8 
9 // The bool should go away becuase U is not used.
10 using Alias = DoesNotUseU<int, bool, char>;
11