Skip to content

Commit 9842048

Browse files
committed
Auto merge of #92285 - compiler-errors:dyn-proj-bounds, r=nikomatsakis
check ~Projection~ all supertrait bounds when confirming dyn candidate I'm pretty sure Projection is the only other PredicateKind that we care about enforcing here. Fixes #80800
2 parents 2184c7c + 67ef11d commit 9842048

6 files changed

+98
-26
lines changed

compiler/rustc_trait_selection/src/traits/select/confirmation.rs

+13-15
Original file line numberDiff line numberDiff line change
@@ -468,21 +468,19 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
468468
.predicates
469469
.into_iter()
470470
{
471-
if let ty::PredicateKind::Trait(..) = super_trait.kind().skip_binder() {
472-
let normalized_super_trait = normalize_with_depth_to(
473-
self,
474-
obligation.param_env,
475-
obligation.cause.clone(),
476-
obligation.recursion_depth + 1,
477-
super_trait,
478-
&mut nested,
479-
);
480-
nested.push(Obligation::new(
481-
obligation.cause.clone(),
482-
obligation.param_env,
483-
normalized_super_trait,
484-
));
485-
}
471+
let normalized_super_trait = normalize_with_depth_to(
472+
self,
473+
obligation.param_env,
474+
obligation.cause.clone(),
475+
obligation.recursion_depth + 1,
476+
super_trait,
477+
&mut nested,
478+
);
479+
nested.push(Obligation::new(
480+
obligation.cause.clone(),
481+
obligation.param_env,
482+
normalized_super_trait,
483+
));
486484
}
487485

488486
let assoc_types: Vec<_> = tcx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
trait SuperTrait {
2+
type A;
3+
type B;
4+
}
5+
6+
trait Trait: SuperTrait<A = <Self as SuperTrait>::B> {}
7+
8+
fn transmute<A, B>(x: A) -> B {
9+
foo::<A, B, dyn Trait<A = A, B = B>>(x)
10+
//~^ ERROR type mismatch resolving `<dyn Trait<A = A, B = B> as SuperTrait>::A == B`
11+
}
12+
13+
fn foo<A, B, T: ?Sized>(x: T::A) -> B
14+
where
15+
T: Trait<B = B>,
16+
{
17+
x
18+
}
19+
20+
static X: u8 = 0;
21+
fn main() {
22+
let x = transmute::<&u8, &[u8; 1_000_000]>(&X);
23+
println!("{:?}", x[100_000]);
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
error[E0271]: type mismatch resolving `<dyn Trait<A = A, B = B> as SuperTrait>::A == B`
2+
--> $DIR/enforce-supertrait-projection.rs:9:5
3+
|
4+
LL | fn transmute<A, B>(x: A) -> B {
5+
| - - expected type parameter
6+
| |
7+
| found type parameter
8+
LL | foo::<A, B, dyn Trait<A = A, B = B>>(x)
9+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected type parameter `B`, found type parameter `A`
10+
|
11+
= note: expected type parameter `B`
12+
found type parameter `A`
13+
= note: a type parameter was expected, but a different one was found; you might be missing a type parameter or trait bound
14+
= note: for more information, visit https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
15+
note: required by a bound in `foo`
16+
--> $DIR/enforce-supertrait-projection.rs:15:8
17+
|
18+
LL | fn foo<A, B, T: ?Sized>(x: T::A) -> B
19+
| --- required by a bound in this
20+
LL | where
21+
LL | T: Trait<B = B>,
22+
| ^^^^^^^^^^^^ required by this bound in `foo`
23+
24+
error: aborting due to previous error
25+
26+
For more information about this error, try `rustc --explain E0271`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error: lifetime may not live long enough
2+
--> $DIR/supertrait-lifetime-bound.rs:10:5
3+
|
4+
LL | fn test2<'a>() {
5+
| -- lifetime `'a` defined here
6+
...
7+
LL | test1::<dyn Bar<&'a u32>, _>();
8+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static`
9+
10+
error: aborting due to previous error
11+
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
// check-pass
1+
trait Foo: 'static { }
22

3-
use std::any::Any;
3+
trait Bar<T>: Foo { }
44

5-
trait A<T>: Any {
6-
fn m(&self) {}
7-
}
8-
9-
impl<S, T: 'static> A<S> for T {}
5+
fn test1<T: ?Sized + Bar<S>, S>() { }
106

11-
fn call_obj<'a>() {
12-
let obj: &dyn A<&'a ()> = &();
13-
obj.m();
7+
fn test2<'a>() {
8+
// Here: the type `dyn Bar<&'a u32>` references `'a`,
9+
// and so it does not outlive `'static`.
10+
test1::<dyn Bar<&'a u32>, _>();
11+
//~^ ERROR the type `(dyn Bar<&'a u32> + 'static)` does not fulfill the required lifetime
1412
}
1513

16-
fn main() {}
14+
fn main() { }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
error[E0477]: the type `(dyn Bar<&'a u32> + 'static)` does not fulfill the required lifetime
2+
--> $DIR/supertrait-lifetime-bound.rs:10:5
3+
|
4+
LL | test1::<dyn Bar<&'a u32>, _>();
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6+
|
7+
note: type must satisfy the static lifetime as required by this binding
8+
--> $DIR/supertrait-lifetime-bound.rs:5:22
9+
|
10+
LL | fn test1<T: ?Sized + Bar<S>, S>() { }
11+
| ^^^^^^
12+
13+
error: aborting due to previous error
14+
15+
For more information about this error, try `rustc --explain E0477`.

0 commit comments

Comments
 (0)