Skip to content

Commit 67ef11d

Browse files
check all dyn obligations, actually
1 parent f14a5fd commit 67ef11d

File tree

4 files changed

+48
-28
lines changed

4 files changed

+48
-28
lines changed

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

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

490486
let assoc_types: Vec<_> = tcx
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)