blob: 99d4cc71b4507a8a3300ead67869a09f28062f92 [file] [log] [blame]
// bindgen-flags: -- -std=c++14
template <typename T, typename U, typename V>
class DoesNotUseU {
T t;
V v;
};
// The bool should go away becuase U is not used.
using Alias = DoesNotUseU<int, bool, char>;