Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
2e7bbcfdbb487100f58d682a39dda3583fbde517
/
.
/
bindgen-tests
/
tests
/
headers
/
template-param-usage-7.hpp
blob: 3d70cee1451c9ff3e4b8280d1ed1075986001c4e [
file
]
// bindgen-flags: -- -std=c++14
template
<
typename
T
,
typename
U
,
typename
V
>
class
DoesNotUseU
{
T t
;
V v
;
};
// The bool should go away because U is not used.
using
Alias
=
DoesNotUseU
<
int
,
bool
,
char
>;