mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
22 lines
489 B
Rust
22 lines
489 B
Rust
// edition:2021
|
|
|
|
#![feature(return_position_impl_trait_in_trait)]
|
|
#![allow(incomplete_features)]
|
|
|
|
use std::future::Future;
|
|
|
|
pub trait AsyncTrait {
|
|
fn async_fn(&self, buff: &[u8]) -> impl Future<Output = Vec<u8>>;
|
|
}
|
|
|
|
pub struct Struct;
|
|
|
|
impl AsyncTrait for Struct {
|
|
fn async_fn<'a>(&self, buff: &'a [u8]) -> impl Future<Output = Vec<u8>> + 'a {
|
|
//~^ ERROR `impl` item signature doesn't match `trait` item signature
|
|
async move { buff.to_vec() }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|