Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
e23f0a7ad6fe7a394cd83f92979eb5871a040052
/
.
/
bindgen-tests
/
tests
/
headers
/
default-template-parameter.hpp
blob: 4deed834fad4d012d39cf945dc6d98146012b272 [
file
] [
log
] [
blame
]
template
<
typename
T
,
typename
U
=
int
>
struct
Foo
{
T t
;
U u
;
};
static
Foo
<bool>
bar
;