-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove assert that checks type equality
- Loading branch information
1 parent
82f6044
commit 028f340
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 |