Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/upstream/bump-min-stable-target
/
.
/
bindgen-tests
/
tests
/
headers
/
template-param-usage-7.hpp
blob: 3d70cee1451c9ff3e4b8280d1ed1075986001c4e [
file
] [
log
] [
blame
] [
edit
]
// 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
>;