Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b05700a

Browse files
authoredNov 18, 2023
Rollup merge of rust-lang#117994 - compiler-errors:throw-away-regions-in-coherence, r=lcnr
Ignore but do not assume region obligations from unifying headers in negative coherence Partly addresses a FIXME that was added in rust-lang#112875. Just as we can throw away the nested trait/projection obligations from unifying two impl headers, we can also just throw away the region obligations too. I removed part of the FIXME that was incorrect, namely: > Given that the only region constraints we get are involving inference regions in the root, it shouldn't matter, but still sus. This is not true when unifying `fn(A)` and `for<'b> fn(&'b B)` which ends up with placeholder region outlives from non-root universes. I'm pretty sure this is okay, though it would be nice if we were to use them as assumptions. See the `explicit` revision of the test I committed, which still fails. Fixes rust-lang#117986 r? lcnr, feel free to reassign tho.
2 parents 2d336fb + d688b86 commit b05700a

3 files changed

+50
-6
lines changed
 

‎compiler/rustc_trait_selection/src/traits/coherence.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -546,14 +546,14 @@ fn try_prove_negated_where_clause<'tcx>(
546546
};
547547

548548
// FIXME(with_negative_coherence): the infcx has region contraints from equating
549-
// the impl headers as requirements. Given that the only region constraints we
550-
// get are involving inference regions in the root, it shouldn't matter, but
551-
// still sus.
549+
// the impl headers as requirements.
552550
//
553-
// We probably should just throw away the region obligations registered up until
554-
// now, or ideally use them as assumptions when proving the region obligations
555-
// that we get from proving the negative predicate below.
551+
// We ideally should use these region constraints as assumptions when proving
552+
// the region obligations that we get from proving the negative predicate below.
556553
let ref infcx = root_infcx.fork();
554+
let _ = infcx.take_registered_region_obligations();
555+
let _ = infcx.take_and_reset_region_constraints();
556+
557557
let ocx = ObligationCtxt::new(infcx);
558558

559559
ocx.register_obligation(Obligation::new(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
error: conflicting implementations of trait `FnMarker` for type `fn(&_)`
2+
--> $DIR/negative-coherence-placeholder-region-constraints-on-unification.rs:21:1
3+
|
4+
LL | impl<T: ?Sized + Marker> FnMarker for fn(T) {}
5+
| ------------------------------------------- first implementation here
6+
LL | impl<T: ?Sized> FnMarker for fn(&T) {}
7+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `fn(&_)`
8+
|
9+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
10+
= note: for more information, see issue #56105 <https://github.com/rust-lang/rust/issues/56105>
11+
= note: this behavior recently changed as a result of a bug fix; see rust-lang/rust#56105 for details
12+
note: the lint level is defined here
13+
--> $DIR/negative-coherence-placeholder-region-constraints-on-unification.rs:4:11
14+
|
15+
LL | #![forbid(coherence_leak_check)]
16+
| ^^^^^^^^^^^^^^^^^^^^
17+
18+
error: aborting due to previous error
19+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// revisions: explicit implicit
2+
//[implicit] check-pass
3+
4+
#![forbid(coherence_leak_check)]
5+
#![feature(negative_impls, with_negative_coherence)]
6+
7+
pub trait Marker {}
8+
9+
#[cfg(implicit)]
10+
impl<T: ?Sized> !Marker for &T {}
11+
12+
#[cfg(explicit)]
13+
impl<'a, T: ?Sized + 'a> !Marker for &'a T {}
14+
15+
trait FnMarker {}
16+
17+
// Unifying these two impls below results in a `T: '!0` obligation
18+
// that we shouldn't need to care about. Ideally, we'd treat that
19+
// as an assumption when proving `&'!0 T: Marker`...
20+
impl<T: ?Sized + Marker> FnMarker for fn(T) {}
21+
impl<T: ?Sized> FnMarker for fn(&T) {}
22+
//[explicit]~^ ERROR conflicting implementations of trait `FnMarker` for type `fn(&_)`
23+
//[explicit]~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
24+
25+
fn main() {}

0 commit comments

Comments
 (0)
Failed to load comments.