rust/tests/ui/traits/impl-method-mismatch.rs
2023-01-11 09:32:08 +00:00

14 lines
335 B
Rust

trait Mumbo {
fn jumbo(&self, x: &usize) -> usize;
}
impl Mumbo for usize {
// Cannot have a larger effect than the trait:
unsafe fn jumbo(&self, x: &usize) { *self + *x; }
//~^ ERROR method `jumbo` has an incompatible type for trait
//~| expected signature `fn
//~| found signature `unsafe fn
}
fn main() {}