Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
impl-trait
/
in-trait
/
trait-more-generics-than-impl.rs
blob: 0477de3315a2b0c3a77705540fe4cd44b5f56e2f [
file
] [
log
] [
blame
]
struct
S
;
trait
Foo
{
fn
bar
<
T
>()
->
impl
Sized
;
}
impl
Foo
for
S
{
fn
bar
()
->
impl
Sized
{}
//~^ ERROR associated function `bar` has 0 type parameters but its trait declaration has 1 type parameter
}
fn
main
()
{
S
::
bar
();
}