2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-10-23 03:49:18 -05:00
|
|
|
|
2012-10-25 23:55:36 -05:00
|
|
|
trait Mumbo {
|
2015-01-08 05:02:42 -06:00
|
|
|
fn jumbo(&self, x: &usize) -> usize;
|
2012-10-25 23:55:36 -05:00
|
|
|
}
|
|
|
|
|
2015-01-08 05:02:42 -06:00
|
|
|
impl Mumbo for usize {
|
2012-10-25 23:55:36 -05:00
|
|
|
// Cannot have a larger effect than the trait:
|
2015-01-08 05:02:42 -06:00
|
|
|
unsafe fn jumbo(&self, x: &usize) { *self + *x; }
|
2015-07-18 20:14:36 -05:00
|
|
|
//~^ ERROR method `jumbo` has an incompatible type for trait
|
2016-07-18 15:13:34 -05:00
|
|
|
//~| expected type `fn
|
|
|
|
//~| found type `unsafe fn
|
2012-10-25 23:55:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|