Skip to content

Commit c97d135

Browse files
committedJan 28, 2019
Refer to synthetically named lifetimes as "some specific lifetime" rather than "the specific lifetime"
1 parent e077501 commit c97d135

13 files changed

+21
-21
lines changed
 

‎src/librustc/infer/error_reporting/nice_region_error/placeholder_error.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -416,14 +416,14 @@ impl NiceRegionError<'me, 'gcx, 'tcx> {
416416
if any_self_ty_has_vid {
417417
err.note(&format!(
418418
"but `{}` is actually implemented for the type `{}`, \
419-
for the specific lifetime `'{}`",
419+
for some specific lifetime `'{}`",
420420
actual_trait_ref,
421421
actual_trait_ref.self_ty(),
422422
n
423423
));
424424
} else {
425425
err.note(&format!(
426-
"but `{}` actually implements `{}`, for some lifetime `'{}`",
426+
"but `{}` actually implements `{}`, for some specific lifetime `'{}`",
427427
actual_trait_ref.self_ty(),
428428
actual_trait_ref,
429429
n

‎src/test/ui/associated-types/associated-types-eq-hr.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ LL | tuple_one::<Tuple>();
4242
|
4343
= note: Due to a where-clause on `tuple_one`,
4444
= note: `Tuple` must implement `TheTrait<(&'0 isize, &'1 isize)>`, for any two lifetimes `'0` and `'1`
45-
= note: but `Tuple` actually implements `TheTrait<(&'2 isize, &'2 isize)>`, for some lifetime `'2`
45+
= note: but `Tuple` actually implements `TheTrait<(&'2 isize, &'2 isize)>`, for some specific lifetime `'2`
4646

4747
error: implementation of `TheTrait` is not general enough
4848
--> $DIR/associated-types-eq-hr.rs:96:5
@@ -52,7 +52,7 @@ LL | tuple_two::<Tuple>();
5252
|
5353
= note: Due to a where-clause on `tuple_two`,
5454
= note: `Tuple` must implement `TheTrait<(&'0 isize, &'1 isize)>`, for any two lifetimes `'0` and `'1`
55-
= note: but `Tuple` actually implements `TheTrait<(&'2 isize, &'2 isize)>`, for some lifetime `'2`
55+
= note: but `Tuple` actually implements `TheTrait<(&'2 isize, &'2 isize)>`, for some specific lifetime `'2`
5656

5757
error: implementation of `TheTrait` is not general enough
5858
--> $DIR/associated-types-eq-hr.rs:105:5
@@ -62,7 +62,7 @@ LL | tuple_four::<Tuple>();
6262
|
6363
= note: Due to a where-clause on `tuple_four`,
6464
= note: `Tuple` must implement `TheTrait<(&'0 isize, &'1 isize)>`, for any two lifetimes `'0` and `'1`
65-
= note: but `Tuple` actually implements `TheTrait<(&'2 isize, &'2 isize)>`, for some lifetime `'2`
65+
= note: but `Tuple` actually implements `TheTrait<(&'2 isize, &'2 isize)>`, for some specific lifetime `'2`
6666

6767
error: aborting due to 5 previous errors
6868

‎src/test/ui/associated-types/higher-ranked-projection.bad.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | foo(());
66
|
77
= note: Due to a where-clause on `foo`,
88
= note: `Mirror` would have to be implemented for the type `&'0 ()`, for any lifetime `'0`
9-
= note: but `Mirror` is actually implemented for the type `&'1 ()`, for the specific lifetime `'1`
9+
= note: but `Mirror` is actually implemented for the type `&'1 ()`, for some specific lifetime `'1`
1010

1111
error: aborting due to previous error
1212

‎src/test/ui/generator/auto-trait-regions.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | assert_foo(gen);
55
| ^^^^^^^^^^
66
|
77
= note: `Foo` would have to be implemented for the type `&'0 OnlyFooIfStaticRef`, for any lifetime `'0`
8-
= note: but `Foo` is actually implemented for the type `&'1 OnlyFooIfStaticRef`, for the specific lifetime `'1`
8+
= note: but `Foo` is actually implemented for the type `&'1 OnlyFooIfStaticRef`, for some specific lifetime `'1`
99

1010
error: implementation of `Foo` is not general enough
1111
--> $DIR/auto-trait-regions.rs:48:5
@@ -14,7 +14,7 @@ LL | assert_foo(gen);
1414
| ^^^^^^^^^^
1515
|
1616
= note: `Foo` would have to be implemented for the type `A<'0, '1>`, for any two lifetimes `'0` and `'1`
17-
= note: but `Foo` is actually implemented for the type `A<'_, '2>`, for the specific lifetime `'2`
17+
= note: but `Foo` is actually implemented for the type `A<'_, '2>`, for some specific lifetime `'2`
1818

1919
error: aborting due to 2 previous errors
2020

‎src/test/ui/hrtb/hrtb-cache-issue-54302.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | assert_deserialize_owned::<&'static str>(); //~ ERROR
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
77
= note: `&'static str` must implement `Deserialize<'0>`, for any lifetime `'0`
8-
= note: but `&str` actually implements `Deserialize<'1>`, for some lifetime `'1`
8+
= note: but `&str` actually implements `Deserialize<'1>`, for some specific lifetime `'1`
99

1010
error: aborting due to previous error
1111

‎src/test/ui/hrtb/hrtb-conflate-regions.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | fn b() { want_foo2::<SomeStruct>(); } //~ ERROR
66
|
77
= note: Due to a where-clause on `want_foo2`,
88
= note: `SomeStruct` must implement `Foo<(&'0 isize, &'1 isize)>`, for any two lifetimes `'0` and `'1`
9-
= note: but `SomeStruct` actually implements `Foo<(&'2 isize, &'2 isize)>`, for some lifetime `'2`
9+
= note: but `SomeStruct` actually implements `Foo<(&'2 isize, &'2 isize)>`, for some specific lifetime `'2`
1010

1111
error: aborting due to previous error
1212

‎src/test/ui/hrtb/hrtb-exists-forall-trait-invariant.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | foo::<()>(); //~ ERROR not general enough
66
|
77
= note: Due to a where-clause on `foo`,
88
= note: `()` must implement `Trait<for<'b> fn(std::cell::Cell<&'b u32>)>`
9-
= note: but `()` actually implements `Trait<fn(std::cell::Cell<&'0 u32>)>`, for some lifetime `'0`
9+
= note: but `()` actually implements `Trait<fn(std::cell::Cell<&'0 u32>)>`, for some specific lifetime `'0`
1010

1111
error: aborting due to previous error
1212

‎src/test/ui/hrtb/hrtb-just-for-static.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | want_hrtb::<StaticInt>() //~ ERROR
66
|
77
= note: Due to a where-clause on `want_hrtb`,
88
= note: `StaticInt` must implement `Foo<&'0 isize>`, for any lifetime `'0`
9-
= note: but `StaticInt` actually implements `Foo<&'1 isize>`, for some lifetime `'1`
9+
= note: but `StaticInt` actually implements `Foo<&'1 isize>`, for some specific lifetime `'1`
1010

1111
error: implementation of `Foo` is not general enough
1212
--> $DIR/hrtb-just-for-static.rs:30:5
@@ -16,7 +16,7 @@ LL | want_hrtb::<&'a u32>() //~ ERROR
1616
|
1717
= note: Due to a where-clause on `want_hrtb`,
1818
= note: `Foo<&'0 isize>` would have to be implemented for the type `&'a u32`, for any lifetime `'0`
19-
= note: but `Foo<&'1 isize>` is actually implemented for the type `&'1 u32`, for the specific lifetime `'1`
19+
= note: but `Foo<&'1 isize>` is actually implemented for the type `&'1 u32`, for some specific lifetime `'1`
2020

2121
error: aborting due to 2 previous errors
2222

‎src/test/ui/hrtb/hrtb-perfect-forwarding.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | foo_hrtb_bar_not(&mut t); //~ ERROR not general enough
66
|
77
= note: Due to a where-clause on `foo_hrtb_bar_not`,
88
= note: `&mut T` must implement `Foo<&'0 isize>`, for any lifetime `'0`
9-
= note: but `&mut T` actually implements `Foo<&'1 isize>`, for some lifetime `'1`
9+
= note: but `&mut T` actually implements `Foo<&'1 isize>`, for some specific lifetime `'1`
1010

1111
error: aborting due to previous error
1212

‎src/test/ui/issues/issue-54302-cases.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | <u32 as RefFoo<u32>>::ref_foo(a)
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
77
= note: `Foo<'static, u32>` would have to be implemented for the type `&'0 u32`, for any lifetime `'0`
8-
= note: but `Foo<'_, u32>` is actually implemented for the type `&'1 u32`, for the specific lifetime `'1`
8+
= note: but `Foo<'_, u32>` is actually implemented for the type `&'1 u32`, for some specific lifetime `'1`
99

1010
error: implementation of `Foo` is not general enough
1111
--> $DIR/issue-54302-cases.rs:69:5
@@ -14,7 +14,7 @@ LL | <i32 as RefFoo<i32>>::ref_foo(a)
1414
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1515
|
1616
= note: `Foo<'static, i32>` would have to be implemented for the type `&'0 i32`, for any lifetime `'0`
17-
= note: but `Foo<'_, i32>` is actually implemented for the type `&'1 i32`, for the specific lifetime `'1`
17+
= note: but `Foo<'_, i32>` is actually implemented for the type `&'1 i32`, for some specific lifetime `'1`
1818

1919
error: implementation of `Foo` is not general enough
2020
--> $DIR/issue-54302-cases.rs:75:5
@@ -23,7 +23,7 @@ LL | <u64 as RefFoo<u64>>::ref_foo(a)
2323
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2424
|
2525
= note: `Foo<'static, u64>` would have to be implemented for the type `&'0 u64`, for any lifetime `'0`
26-
= note: but `Foo<'_, u64>` is actually implemented for the type `&'1 u64`, for the specific lifetime `'1`
26+
= note: but `Foo<'_, u64>` is actually implemented for the type `&'1 u64`, for some specific lifetime `'1`
2727

2828
error: implementation of `Foo` is not general enough
2929
--> $DIR/issue-54302-cases.rs:81:5
@@ -32,7 +32,7 @@ LL | <i64 as RefFoo<i64>>::ref_foo(a)
3232
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3333
|
3434
= note: `Foo<'static, i64>` would have to be implemented for the type `&'0 i64`, for any lifetime `'0`
35-
= note: but `Foo<'_, i64>` is actually implemented for the type `&'1 i64`, for the specific lifetime `'1`
35+
= note: but `Foo<'_, i64>` is actually implemented for the type `&'1 i64`, for some specific lifetime `'1`
3636

3737
error: aborting due to 4 previous errors
3838

‎src/test/ui/issues/issue-54302.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | assert_deserialize_owned::<&'static str>();
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
77
= note: `&'static str` must implement `Deserialize<'0>`, for any lifetime `'0`
8-
= note: but `&str` actually implements `Deserialize<'1>`, for some lifetime `'1`
8+
= note: but `&str` actually implements `Deserialize<'1>`, for some specific lifetime `'1`
99

1010
error: aborting due to previous error
1111

‎src/test/ui/issues/issue-57362-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | let x = <fn (&())>::make_g(); //~ ERROR not general enough
55
| ^^^^^^^^^^^^^^^^^^
66
|
77
= note: `X` would have to be implemented for the type `for<'r> fn(&'r ())`
8-
= note: but `X` is actually implemented for the type `fn(&'0 ())`, for the specific lifetime `'0`
8+
= note: but `X` is actually implemented for the type `fn(&'0 ())`, for some specific lifetime `'0`
99

1010
error: aborting due to previous error
1111

‎src/test/ui/where-clauses/where-for-self-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | foo(&X); //~ ERROR implementation of `Bar` is not general enough
66
|
77
= note: Due to a where-clause on `foo`,
88
= note: `Bar` would have to be implemented for the type `&'0 u32`, for any lifetime `'0`
9-
= note: but `Bar` is actually implemented for the type `&'1 u32`, for the specific lifetime `'1`
9+
= note: but `Bar` is actually implemented for the type `&'1 u32`, for some specific lifetime `'1`
1010

1111
error: aborting due to previous error
1212

0 commit comments

Comments
 (0)
Please sign in to comment.