2022-09-26 19:54:02 -05:00
|
|
|
// check-pass
|
|
|
|
// edition:2021
|
2023-03-17 12:05:26 -05:00
|
|
|
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
|
|
|
|
// revisions: current next
|
2022-09-26 19:54:02 -05:00
|
|
|
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
pub trait SpiDevice {
|
|
|
|
async fn transaction<F, R>(&mut self);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SpiDevice for () {
|
|
|
|
async fn transaction<F, R>(&mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|