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#115215 - ouz-a:mir_issue, r=lcnr
Remove assert that checks type equality rust-lang#112307 although this prevented `unsound` issues it also seems to introduce regressions rust-lang#114858 is example of this regression. I locally tested this rust-lang#114858 (comment) issue and failing assert is [this](https://www.diffchecker.com/cjb7jSQm/). This is also related to rust-lang#115025
- Loading branch information
Showing
3 changed files
with
53 additions
and
4 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,48 @@ | ||
// ignore-pass | ||
// build-pass | ||
// edition:2021 | ||
use std::future::Future; | ||
use std::pin::Pin; | ||
|
||
type BoxFuture<T> = Pin<Box<dyn Future<Output = T>>>; | ||
|
||
fn main() { | ||
let _ = wrapper_call(handler); | ||
} | ||
|
||
async fn wrapper_call(handler: impl Handler) { | ||
handler.call().await; | ||
} | ||
async fn handler() { | ||
f(&()).await; | ||
} | ||
async fn f<'a>(db: impl Acquire<'a>) { | ||
db.acquire().await; | ||
} | ||
|
||
trait Handler { | ||
type Future: Future; | ||
fn call(self) -> Self::Future; | ||
} | ||
|
||
impl<Fut, F> Handler for F | ||
where | ||
F: Fn() -> Fut, | ||
Fut: Future, | ||
{ | ||
type Future = Fut; | ||
fn call(self) -> Self::Future { | ||
loop {} | ||
} | ||
} | ||
|
||
trait Acquire<'a> { | ||
type Connection; | ||
fn acquire(self) -> BoxFuture<Self::Connection>; | ||
} | ||
impl<'a> Acquire<'a> for &'a () { | ||
type Connection = Self; | ||
fn acquire(self) -> BoxFuture<Self> { | ||
loop {} | ||
} | ||
} |
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 @@ | ||
WARN rustc_codegen_ssa::mir::locals Unexpected initial operand type. See the issues/114858 |