rust/tests/ui/typeck/derive-sugg-arg-arity.rs

9 lines
218 B
Rust

pub struct A;
fn main() {
match () {
_ => match A::partial_cmp() {},
//~^ ERROR the function or associated item `partial_cmp` exists for struct `A`, but its trait bounds were not satisfied
}
}