summary refs log tree commit diff
path: root/src/test/compile-fail/trait-impl-different-num-params.rs
blob: 8cf572d27abe58f5e107096b84856c75e3029662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
trait foo {
    fn bar(x: uint) -> self;
}
impl int: foo {
    fn bar() -> int {
        //~^ ERROR method `bar` has 0 parameters but the trait has 1
        self
    }
}

fn main() {
}