summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/trait-impl-fn-incompatibility.rs
blob: ba206b8608f6c51b0fabd3d480c19440104b45e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
trait Foo {
    fn foo(x: u16);
    fn bar(&mut self, bar: &mut Bar);
}

struct Bar;

impl Foo for Bar {
    fn foo(x: i16) { } //~ ERROR incompatible type
    fn bar(&mut self, bar: &Bar) { } //~ ERROR incompatible type
}

fn main() {
}