-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
temporarily revert "ice on ambguity in mir typeck"
Reverts #116530
- 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. | ||
} |