Choose predicates without inference variables over those with them
Fixes #54705 When constructing synthetic auto trait impls, we may come across multiple predicates involving the same type, trait, and substitutions. Since we can only display one of these, we pick the one with the 'most strict' lifetime paramters. This ensures that the impl we render the user is actually valid (that is, a struct matching that impl will actually implement the auto trait in question). This commit exapnds the definition of 'more strict' to take into account inference variables. We always choose a predicate without inference variables over a predicate with inference variables.
This commit is contained in:
parent
4f5cfa611d
commit
20aa751383
@ -447,27 +447,51 @@ fn add_user_pred<'c>(
|
|||||||
ty::RegionKind::ReLateBound(_, _),
|
ty::RegionKind::ReLateBound(_, _),
|
||||||
) => {}
|
) => {}
|
||||||
|
|
||||||
(ty::RegionKind::ReLateBound(_, _), _) => {
|
(ty::RegionKind::ReLateBound(_, _), _) |
|
||||||
|
(_, ty::RegionKind::ReVar(_)) => {
|
||||||
|
// One of these is true:
|
||||||
// The new predicate has a HRTB in a spot where the old
|
// The new predicate has a HRTB in a spot where the old
|
||||||
// predicate does not (if they both had a HRTB, the previous
|
// predicate does not (if they both had a HRTB, the previous
|
||||||
// match arm would have executed).
|
// match arm would have executed). A HRBT is a 'stricter'
|
||||||
|
// bound than anything else, so we want to keep the newer
|
||||||
|
// predicate (with the HRBT) in place of the old predicate.
|
||||||
//
|
//
|
||||||
// The means we want to remove the older predicate from
|
// OR
|
||||||
// user_computed_preds, since having both it and the new
|
//
|
||||||
|
// The old predicate has a region variable where the new
|
||||||
|
// predicate has some other kind of region. An region
|
||||||
|
// variable isn't something we can actually display to a user,
|
||||||
|
// so we choose ther new predicate (which doesn't have a region
|
||||||
|
// varaible).
|
||||||
|
//
|
||||||
|
// In both cases, we want to remove the old predicate,
|
||||||
|
// from user_computed_preds, and replace it with the new
|
||||||
|
// one. Having both the old and the new
|
||||||
// predicate in a ParamEnv would confuse SelectionContext
|
// predicate in a ParamEnv would confuse SelectionContext
|
||||||
|
//
|
||||||
// We're currently in the predicate passed to 'retain',
|
// We're currently in the predicate passed to 'retain',
|
||||||
// so we return 'false' to remove the old predicate from
|
// so we return 'false' to remove the old predicate from
|
||||||
// user_computed_preds
|
// user_computed_preds
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
(_, ty::RegionKind::ReLateBound(_, _)) => {
|
(_, ty::RegionKind::ReLateBound(_, _)) |
|
||||||
// This is the opposite situation as the previous arm - the
|
(ty::RegionKind::ReVar(_), _) => {
|
||||||
// old predicate has a HRTB lifetime in a place where the
|
// This is the opposite situation as the previous arm.
|
||||||
// new predicate does not. We want to leave the old
|
// One of these is true:
|
||||||
|
//
|
||||||
|
// The old predicate has a HRTB lifetime in a place where the
|
||||||
|
// new predicate does not.
|
||||||
|
//
|
||||||
|
// OR
|
||||||
|
//
|
||||||
|
// The new predicate has a region variable where the old
|
||||||
|
// predicate has some other type of region.
|
||||||
|
//
|
||||||
|
// We want to leave the old
|
||||||
// predicate in user_computed_preds, and skip adding
|
// predicate in user_computed_preds, and skip adding
|
||||||
// new_pred to user_computed_params.
|
// new_pred to user_computed_params.
|
||||||
should_add_new = false
|
should_add_new = false
|
||||||
}
|
},
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
40
src/test/rustdoc/issue-54705.rs
Normal file
40
src/test/rustdoc/issue-54705.rs
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
|
||||||
|
// file at the top-level directory of this distribution and at
|
||||||
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||||
|
// option. This file may not be copied, modified, or distributed
|
||||||
|
// except according to those terms.
|
||||||
|
|
||||||
|
|
||||||
|
pub trait ScopeHandle<'scope> {}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// @has issue_54705/struct.ScopeFutureContents.html
|
||||||
|
// @has - '//*[@id="synthetic-implementations-list"]/*[@class="impl"]//*/code' "impl<'scope, S> \
|
||||||
|
// Send for ScopeFutureContents<'scope, S> where S: Sync"
|
||||||
|
//
|
||||||
|
// @has - '//*[@id="synthetic-implementations-list"]/*[@class="impl"]//*/code' "impl<'scope, S> \
|
||||||
|
// Sync for ScopeFutureContents<'scope, S> where S: Sync"
|
||||||
|
pub struct ScopeFutureContents<'scope, S>
|
||||||
|
where S: ScopeHandle<'scope>,
|
||||||
|
{
|
||||||
|
dummy: &'scope S,
|
||||||
|
this: Box<ScopeFuture<'scope, S>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
struct ScopeFuture<'scope, S>
|
||||||
|
where S: ScopeHandle<'scope>,
|
||||||
|
{
|
||||||
|
contents: ScopeFutureContents<'scope, S>,
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe impl<'scope, S> Send for ScopeFuture<'scope, S>
|
||||||
|
where S: ScopeHandle<'scope>,
|
||||||
|
{}
|
||||||
|
unsafe impl<'scope, S> Sync for ScopeFuture<'scope, S>
|
||||||
|
where S: ScopeHandle<'scope>,
|
||||||
|
{}
|
Loading…
Reference in New Issue
Block a user