blob: a7de5e38113727d260f115817febc987f3644ecb [file] [log] [blame]
//@ dont-require-annotations: NOTE
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
//~| NOTE expected signature `fn
//~| NOTE found signature `unsafe fn
}
fn main() {}