forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#118994 - cuviper:beta-next, r=cuviper
[beta] backports - temporarily revert "ice on ambguity in mir typeck" rust-lang#118736 - Update to LLVM 17.0.6 rust-lang#118936 r? ghost
- Loading branch information
Showing
4 changed files
with
30 additions
and
14 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
Submodule llvm-project
updated
47 files
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. | ||
} |