diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2016-08-18 06:12:23 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-18 06:12:23 +0300 |
| commit | 8ccc11b31bbb1de3813d2baa92aed2fcaf090586 (patch) | |
| tree | 811987ed9e3f941613cacc19d2a23862f278a07d /src/test/ui | |
| parent | c3601d40ecdb3c6626919c5baf1851fad24e3d47 (diff) | |
| parent | 31d56cb144ead0811935a09d32d7b2febc5b42de (diff) | |
| download | rust-8ccc11b31bbb1de3813d2baa92aed2fcaf090586.tar.gz rust-8ccc11b31bbb1de3813d2baa92aed2fcaf090586.zip | |
Rollup merge of #35765 - KiChjang:e0053-bonus, r=jonathandturner
Additional span info for E0053 Part of #35233. Fixes #35212. r? @jonathandturner
Diffstat (limited to 'src/test/ui')
| -rw-r--r-- | src/test/ui/mismatched_types/trait-impl-fn-incompatibility.rs | 27 | ||||
| -rw-r--r-- | src/test/ui/mismatched_types/trait-impl-fn-incompatibility.stderr | 23 |
2 files changed, 50 insertions, 0 deletions
diff --git a/src/test/ui/mismatched_types/trait-impl-fn-incompatibility.rs b/src/test/ui/mismatched_types/trait-impl-fn-incompatibility.rs new file mode 100644 index 00000000000..099c8699e49 --- /dev/null +++ b/src/test/ui/mismatched_types/trait-impl-fn-incompatibility.rs @@ -0,0 +1,27 @@ +// Copyright 2016 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. + +// rustc-env:RUST_NEW_ERROR_FORMAT + +trait Foo { + fn foo(x: u16); + fn bar(&mut self, bar: &mut Bar); +} + +struct Bar; + +impl Foo for Bar { + fn foo(x: i16) { } + fn bar(&mut self, bar: &Bar) { } +} + +fn main() { +} + diff --git a/src/test/ui/mismatched_types/trait-impl-fn-incompatibility.stderr b/src/test/ui/mismatched_types/trait-impl-fn-incompatibility.stderr new file mode 100644 index 00000000000..e5dfdc8e910 --- /dev/null +++ b/src/test/ui/mismatched_types/trait-impl-fn-incompatibility.stderr @@ -0,0 +1,23 @@ +error[E0053]: method `foo` has an incompatible type for trait + --> $DIR/trait-impl-fn-incompatibility.rs:21:15 + | +14 | fn foo(x: u16); + | --- original trait requirement +... +21 | fn foo(x: i16) { } + | ^^^ expected u16, found i16 + +error[E0053]: method `bar` has an incompatible type for trait + --> $DIR/trait-impl-fn-incompatibility.rs:22:28 + | +15 | fn bar(&mut self, bar: &mut Bar); + | -------- original trait requirement +... +22 | fn bar(&mut self, bar: &Bar) { } + | ^^^^ values differ in mutability + | + = note: expected type `fn(&mut Bar, &mut Bar)` + = note: found type `fn(&mut Bar, &Bar)` + +error: aborting due to 2 previous errors + |
