about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRemy Rakic <remy.rakic@gmail.com>2020-03-30 01:18:27 +0200
committerRemy Rakic <remy.rakic@gmail.com>2020-03-30 01:18:27 +0200
commit2a7644746b5c5cc7fe214a61fb443efceac06dc5 (patch)
treeff6811dd7e4ed6c4306eafe5d56910d2d83a34d9 /src
parent860f71f141baf8228a9d71a75092ff2378bfee42 (diff)
downloadrust-2a7644746b5c5cc7fe214a61fb443efceac06dc5.tar.gz
rust-2a7644746b5c5cc7fe214a61fb443efceac06dc5.zip
bless output of ui test hrtb/hrtb-perfect-forwarding.rs
trivial formatting changes
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/hrtb/hrtb-perfect-forwarding.polonius.stderr3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/ui/hrtb/hrtb-perfect-forwarding.polonius.stderr b/src/test/ui/hrtb/hrtb-perfect-forwarding.polonius.stderr
index 558d643cde8..676a934569c 100644
--- a/src/test/ui/hrtb/hrtb-perfect-forwarding.polonius.stderr
+++ b/src/test/ui/hrtb/hrtb-perfect-forwarding.polonius.stderr
@@ -39,6 +39,7 @@ LL | |     // Not OK -- The forwarding impl for `Foo` requires that `Bar` also
 ...  |
 LL | |     foo_hrtb_bar_not(&mut t);
    | |     ------------------------ recursive call site
+LL | |
 LL | | }
    | |_^ cannot return without recursing
    |
@@ -51,7 +52,7 @@ LL |     foo_hrtb_bar_not(&mut t);
    |     ^^^^^^^^^^^^^^^^^^^^^^^^
 
 warning: function cannot return without recursing
-  --> $DIR/hrtb-perfect-forwarding.rs:49:1
+  --> $DIR/hrtb-perfect-forwarding.rs:50:1
    |
 LL | / fn foo_hrtb_bar_hrtb<T>(mut t: T)
 LL | |     where T : for<'a> Foo<&'a isize> + for<'b> Bar<&'b isize>