summaryrefslogtreecommitdiffstats
path: root/tests/ui/late-bound-lifetimes/mismatched_arg_count.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/late-bound-lifetimes/mismatched_arg_count.rs')
-rw-r--r--tests/ui/late-bound-lifetimes/mismatched_arg_count.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/late-bound-lifetimes/mismatched_arg_count.rs b/tests/ui/late-bound-lifetimes/mismatched_arg_count.rs
index 0b331e203..792563fd8 100644
--- a/tests/ui/late-bound-lifetimes/mismatched_arg_count.rs
+++ b/tests/ui/late-bound-lifetimes/mismatched_arg_count.rs
@@ -7,6 +7,6 @@ trait Trait<'a> {
type Alias<'a, T> = <T as Trait<'a>>::Assoc;
fn bar<'a, T: Trait<'a>>(_: Alias<'a, 'a, T>) {}
-//~^ error: this type alias takes 1 lifetime argument but 2 lifetime arguments were supplied
+//~^ error: type alias takes 1 lifetime argument but 2 lifetime arguments were supplied
fn main() {}