summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-85347.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/issue-85347.rs')
-rw-r--r--tests/ui/suggestions/issue-85347.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/suggestions/issue-85347.rs b/tests/ui/suggestions/issue-85347.rs
index 02b5fb618..04d4c47d8 100644
--- a/tests/ui/suggestions/issue-85347.rs
+++ b/tests/ui/suggestions/issue-85347.rs
@@ -1,7 +1,7 @@
use std::ops::Deref;
trait Foo {
type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
- //~^ ERROR this associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
+ //~^ ERROR associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
//~| ERROR associated type bindings are not allowed here
//~| HELP add missing
}