about summary refs log tree commit diff
path: root/tests/ui/traits/trait-object-lifetime-default-note.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/trait-object-lifetime-default-note.rs')
-rw-r--r--tests/ui/traits/trait-object-lifetime-default-note.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/ui/traits/trait-object-lifetime-default-note.rs b/tests/ui/traits/trait-object-lifetime-default-note.rs
index 275411ff61c..5d8d2c53919 100644
--- a/tests/ui/traits/trait-object-lifetime-default-note.rs
+++ b/tests/ui/traits/trait-object-lifetime-default-note.rs
@@ -6,9 +6,8 @@ fn main() {
     let local = 0; //~ NOTE binding `local` declared here
     let r = &local; //~ ERROR `local` does not live long enough
     //~| NOTE borrowed value does not live long enough
-    //~| NOTE due to object lifetime defaults, `Box<dyn A>` actually means `Box<(dyn A + 'static)>`
     require_box(Box::new(r));
-    //~^ NOTE coercion requires that `local` is borrowed for `'static`
+    //~^ NOTE argument requires that `local` is borrowed for `'static`
 
     let _ = 0;
 } //~ NOTE `local` dropped here while still borrowed