summaryrefslogtreecommitdiff
path: root/tests/headers/template-param-usage-7.hpp
blob: 99d4cc71b4507a8a3300ead67869a09f28062f92 (plain)
1
2
3
4
5
6
7
8
9
10
// 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>;