Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
28
tests/ui/impl-trait/async_scope_creep.rs
Normal file
28
tests/ui/impl-trait/async_scope_creep.rs
Normal file
|
@ -0,0 +1,28 @@
|
|||
#![feature(type_alias_impl_trait)]
|
||||
// edition:2021
|
||||
// check-pass
|
||||
|
||||
struct Pending {}
|
||||
|
||||
struct CantOpen {}
|
||||
|
||||
trait AsyncRead {}
|
||||
|
||||
impl AsyncRead for i32 {}
|
||||
|
||||
type PendingReader<'a> = impl AsyncRead + 'a;
|
||||
|
||||
type OpeningReadFuture<'a> =
|
||||
impl std::future::Future<Output = Result<PendingReader<'a>, CantOpen>>;
|
||||
|
||||
impl Pending {
|
||||
async fn read(&mut self) -> Result<impl AsyncRead + '_, CantOpen> {
|
||||
Ok(42)
|
||||
}
|
||||
|
||||
fn read_fut(&mut self) -> OpeningReadFuture<'_> {
|
||||
self.read()
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue