Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
type-inference
/
unbounded-type-param-in-fn-with-assoc-type.rs
blob: 81d054b3a1e078ceadedcff341c4d21a93bebd44 [
file
] [
log
] [
blame
]
#[
allow
(
invalid_type_param_default
)]
fn
foo
<
T
,
U
=
u64
>()
->
(
T
,
U
)
{
panic
!()
}
fn
main
()
{
foo
();
//~ ERROR type annotations needed
}