forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#118736 - aliemjay:revert-ice-on-ambig, r=co…
…mpiler-errors temporarily revert "ice on ambguity in mir typeck" Reverts rust-lang#116530 as a temporary measure to fix rust-lang#117577. That issue should be ultimately fixed by checking WF of type annotations prior to normalization, which is implemented in rust-lang#104098 but this PR is intended to be backported to beta. r? ``@compiler-errors`` (the reviewer of the reverted PR)
- Loading branch information
Showing
2 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// The WF requirements of the *unnormalized* form of type annotations | ||
// can guide inference. | ||
// check-pass | ||
|
||
pub trait EqualTo { | ||
type Ty; | ||
} | ||
impl<X> EqualTo for X { | ||
type Ty = X; | ||
} | ||
|
||
trait MyTrait<U: EqualTo<Ty = Self>> { | ||
type Out; | ||
} | ||
impl<T, U: EqualTo<Ty = T>> MyTrait<U> for T { | ||
type Out = (); | ||
} | ||
|
||
fn main() { | ||
let _: <_ as MyTrait<u8>>::Out; | ||
// We shoud be able to infer a value for the inference variable above. | ||
// The WF of the unnormalized projection requires `u8: EqualTo<Ty = _>`, | ||
// which is sufficient to guide inference. | ||
} |