rust/tests/ui/impl-trait/in-trait/generics-mismatch.rs
2023-10-24 15:27:06 +00:00

15 lines
227 B
Rust

struct U;
trait Foo {
fn bar(&self) -> impl Sized;
}
impl Foo for U {
fn bar<T>(&self) {}
//~^ ERROR method `bar` has 1 type parameter but its trait declaration has 0 type parameters
}
fn main() {
U.bar();
}