Skip to content

Commit 3ddf480

Browse files
committed
Auto merge of #71896 - spastorino:existential-assoc-types-variance, r=nikomatsakis
Relate existential associated types with variance Invariant Fixes #71550 #72315 r? @nikomatsakis The test case reported in that issue now errors with the following message ... ``` error[E0495]: cannot infer an appropriate lifetime for lifetime parameter 'a in function call due to conflicting requirements --> /tmp/test.rs:25:5 | 25 | bad(&Bar(PhantomData), x) | ^^^^^^^^^^^^^^^^^^^^^^^^^ | note: first, the lifetime cannot outlive the lifetime `'a` as defined on the function body at 24:11... --> /tmp/test.rs:24:11 | 24 | fn extend<'a, T>(x: &'a T) -> &'static T { | ^^ note: ...so that reference does not outlive borrowed content --> /tmp/test.rs:25:28 | 25 | bad(&Bar(PhantomData), x) | ^ = note: but, the lifetime must be valid for the static lifetime... note: ...so that the types are compatible --> /tmp/test.rs:25:9 | 25 | bad(&Bar(PhantomData), x) | ^^^^^^^^^^^^^^^^^ = note: expected `&'static T` found `&T` error: aborting due to previous error For more information about this error, try `rustc --explain E0495`. ``` I could also add that test case if we want to have a weaponized one too.
2 parents e93cb96 + c99164e commit 3ddf480

6 files changed

+52
-5
lines changed

src/librustc_middle/ty/relate.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,8 @@ impl<'tcx> Relate<'tcx> for ty::ExistentialProjection<'tcx> {
250250
&b.item_def_id,
251251
)))
252252
} else {
253-
let ty = relation.relate(&a.ty, &b.ty)?;
254-
let substs = relation.relate(&a.substs, &b.substs)?;
253+
let ty = relation.relate_with_variance(ty::Invariant, &a.ty, &b.ty)?;
254+
let substs = relation.relate_with_variance(ty::Invariant, &a.substs, &b.substs)?;
255255
Ok(ty::ExistentialProjection { item_def_id: a.item_def_id, substs, ty })
256256
}
257257
}

src/test/ui/coercion/coerce-expect-unsized-ascribed.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ error[E0308]: mismatched types
121121
LL | let _ = Box::new(|x| (x as u8)): Box<dyn Fn(i32) -> _>;
122122
| ^^^^^^^^^^^^^^^^^^^^^^^ expected trait object `dyn std::ops::Fn`, found closure
123123
|
124-
= note: expected struct `std::boxed::Box<dyn std::ops::Fn(i32) -> _>`
124+
= note: expected struct `std::boxed::Box<dyn std::ops::Fn(i32) -> u8>`
125125
found struct `std::boxed::Box<[closure@$DIR/coerce-expect-unsized-ascribed.rs:26:22: 26:35]>`
126126

127127
error: aborting due to 14 previous errors

src/test/ui/issues/issue-20605.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
error[E0277]: the size for values of type `dyn std::iter::Iterator<Item = &mut u8>` cannot be known at compilation time
1+
error[E0277]: the size for values of type `dyn std::iter::Iterator<Item = &'a mut u8>` cannot be known at compilation time
22
--> $DIR/issue-20605.rs:2:17
33
|
44
LL | for item in *things { *item = 0 }
55
| ^^^^^^^ doesn't have a size known at compile-time
66
|
7-
= help: the trait `std::marker::Sized` is not implemented for `dyn std::iter::Iterator<Item = &mut u8>`
7+
= help: the trait `std::marker::Sized` is not implemented for `dyn std::iter::Iterator<Item = &'a mut u8>`
88
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
99
= note: required by `std::iter::IntoIterator::into_iter`
1010

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
error: lifetime may not live long enough
2+
--> $DIR/variance-associated-types2.rs:13:12
3+
|
4+
LL | fn take<'a>(_: &'a u32) {
5+
| -- lifetime `'a` defined here
6+
LL | let _: Box<dyn Foo<Bar = &'a u32>> = make();
7+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ type annotation requires that `'a` must outlive `'static`
8+
|
9+
= help: consider replacing `'a` with `'static`
10+
11+
error: aborting due to previous error
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Test that dyn Foo<Bar = T> is invariant with respect to T.
2+
// Failure to enforce invariance here can be weaponized, see #71550 for details.
3+
4+
trait Foo {
5+
type Bar;
6+
}
7+
8+
fn make() -> Box<dyn Foo<Bar = &'static u32>> {
9+
panic!()
10+
}
11+
12+
fn take<'a>(_: &'a u32) {
13+
let _: Box<dyn Foo<Bar = &'a u32>> = make();
14+
//~^ ERROR mismatched types [E0308]
15+
}
16+
17+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/variance-associated-types2.rs:13:42
3+
|
4+
LL | let _: Box<dyn Foo<Bar = &'a u32>> = make();
5+
| ^^^^^^ lifetime mismatch
6+
|
7+
= note: expected trait object `dyn Foo<Bar = &'a u32>`
8+
found trait object `dyn Foo<Bar = &'static u32>`
9+
note: the lifetime `'a` as defined on the function body at 12:9...
10+
--> $DIR/variance-associated-types2.rs:12:9
11+
|
12+
LL | fn take<'a>(_: &'a u32) {
13+
| ^^
14+
= note: ...does not necessarily outlive the static lifetime
15+
16+
error: aborting due to previous error
17+
18+
For more information about this error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)