Skip to content

Commit

Permalink
Update issue-48276 test to new stderr format
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphire-arches committed Mar 5, 2018
1 parent 264c201 commit c0d41fb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/test/ui/issue-48276.stderr
@@ -1,27 +1,28 @@
error[E0185]: method `from` has a `&self` declaration in the impl, but not in the trait
--> $DIR/issue-48276.rs:21:5
|
15 | fn from(a: A) -> Self;
LL | fn from(a: A) -> Self;
| ---------------------- trait method declared without `&self`
...
21 | fn from(self: &'a Self) -> &'b str {
LL | fn from(self: &'a Self) -> &'b str {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `&self` used in impl

error[E0185]: method `from` has a `&self` declaration in the impl, but not in the trait
--> $DIR/issue-48276.rs:30:5
|
30 | fn from(&self) -> B {
LL | fn from(&self) -> B {
| ^^^^^^^^^^^^^^^^^^^ `&self` used in impl
|
= note: `from` from trait: `fn(T) -> Self`

error[E0185]: method `from` has a `&self` declaration in the impl, but not in the trait
--> $DIR/issue-48276.rs:37:5
|
37 | fn from(&self) -> &'static str {
LL | fn from(&self) -> &'static str {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `&self` used in impl
|
= note: `from` from trait: `fn(T) -> Self`

error: aborting due to 3 previous errors

If you want more information on this error, try using "rustc --explain E0185"

0 comments on commit c0d41fb

Please sign in to comment.