Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/upstream/layouttests-ub
/
.
/
tests
/
headers
/
template-param-usage-7.hpp
blob: 99d4cc71b4507a8a3300ead67869a09f28062f92 [
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 becuase U is not used.
using
Alias
=
DoesNotUseU
<
int
,
bool
,
char
>;