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