about summary refs log tree commit diff
path: root/tests/ui/consts/static-default-lifetime/static-trait-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/static-default-lifetime/static-trait-impl.rs')
-rw-r--r--tests/ui/consts/static-default-lifetime/static-trait-impl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/consts/static-default-lifetime/static-trait-impl.rs b/tests/ui/consts/static-default-lifetime/static-trait-impl.rs
index 1e12259e483..85746df146f 100644
--- a/tests/ui/consts/static-default-lifetime/static-trait-impl.rs
+++ b/tests/ui/consts/static-default-lifetime/static-trait-impl.rs
@@ -9,7 +9,7 @@ impl Bar<'_> for A {
     const STATIC: &str = "";
     //~^ ERROR `&` without an explicit lifetime name cannot be used here
     //~| WARN this was previously accepted by the compiler but is being phased out
-    //~| ERROR lifetime parameters or bounds on const `STATIC` do not match the trait declaration
+    //~| ERROR lifetime parameters or bounds on associated const `STATIC` do not match the trait declaration
 }
 
 struct B;