mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
15 lines
232 B
Rust
15 lines
232 B
Rust
struct S;
|
|
|
|
trait Foo {
|
|
fn bar<T>() -> impl Sized;
|
|
}
|
|
|
|
impl Foo for S {
|
|
fn bar() -> impl Sized {}
|
|
//~^ ERROR method `bar` has 0 type parameters but its trait declaration has 1 type parameter
|
|
}
|
|
|
|
fn main() {
|
|
S::bar();
|
|
}
|