summary refs log tree commit diff
path: root/src/test/ui/object-lifetime
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2019-12-19 19:44:06 -0800
committerEsteban Küber <esteban@kuber.com.ar>2020-05-27 16:27:15 -0700
commit3fea832fd7cbff73cf8d5d409ea9aeee0577b0ac (patch)
treed546f0456b1651fa8b12b5e5a4e8245317cb0838 /src/test/ui/object-lifetime
parentff991d60349201a90ca15202dd0323ebdfab8745 (diff)
downloadrust-3fea832fd7cbff73cf8d5d409ea9aeee0577b0ac.tar.gz
rust-3fea832fd7cbff73cf8d5d409ea9aeee0577b0ac.zip
Fix spacing of expected/found notes without a label
Diffstat (limited to 'src/test/ui/object-lifetime')
-rw-r--r--src/test/ui/object-lifetime/object-lifetime-default-elision.stderr8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ui/object-lifetime/object-lifetime-default-elision.stderr b/src/test/ui/object-lifetime/object-lifetime-default-elision.stderr
index 1952ee8269d..79ded5fc875 100644
--- a/src/test/ui/object-lifetime/object-lifetime-default-elision.stderr
+++ b/src/test/ui/object-lifetime/object-lifetime-default-elision.stderr
@@ -24,8 +24,8 @@ note: ...so that the expression is assignable
    |
 LL |     ss
    |     ^^
-   = note: expected  `&'b (dyn SomeTrait + 'b)`
-              found  `&dyn SomeTrait`
+   = note: expected `&'b (dyn SomeTrait + 'b)`
+              found `&dyn SomeTrait`
 
 error[E0495]: cannot infer an appropriate lifetime due to conflicting requirements
   --> $DIR/object-lifetime-default-elision.rs:71:5
@@ -53,8 +53,8 @@ note: ...so that the expression is assignable
    |
 LL |     ss
    |     ^^
-   = note: expected  `&'b (dyn SomeTrait + 'b)`
-              found  `&dyn SomeTrait`
+   = note: expected `&'b (dyn SomeTrait + 'b)`
+              found `&dyn SomeTrait`
 
 error: aborting due to 2 previous errors