]> git.lizzy.rs Git - rust.git/commitdiff
bless output of ui test hrtb/hrtb-perfect-forwarding.rs
authorRemy Rakic <remy.rakic@gmail.com>
Sun, 29 Mar 2020 23:18:27 +0000 (01:18 +0200)
committerRemy Rakic <remy.rakic@gmail.com>
Sun, 29 Mar 2020 23:18:27 +0000 (01:18 +0200)
trivial formatting changes

src/test/ui/hrtb/hrtb-perfect-forwarding.polonius.stderr

index 558d643cde8958a29af8658a93f88baad8860fa9..676a934569c4783f57cc66060e1ca943667d4aad 100644 (file)
@@ -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>