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