about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbobtwinkles <srkoser+github@gmail.com>2018-03-05 04:20:04 -0500
committerbobtwinkles <srkoser+github@gmail.com>2018-03-05 04:20:04 -0500
commitc0d41fb22c050803fb0e831113b6837f80a1db62 (patch)
tree200e15aba2ccf661dec611a2c54aaadd39c63383
parent264c2013eb25f929135a5f4fc8b20b3baeae2af1 (diff)
downloadrust-c0d41fb22c050803fb0e831113b6837f80a1db62.tar.gz
rust-c0d41fb22c050803fb0e831113b6837f80a1db62.zip
Update issue-48276 test to new stderr format
-rw-r--r--src/test/ui/issue-48276.stderr9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/test/ui/issue-48276.stderr b/src/test/ui/issue-48276.stderr
index 43986c5f4d8..9273ece2c90 100644
--- a/src/test/ui/issue-48276.stderr
+++ b/src/test/ui/issue-48276.stderr
@@ -1,16 +1,16 @@
 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`
@@ -18,10 +18,11 @@ error[E0185]: method `from` has a `&self` declaration in the impl, but not in th
 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"