blob: c6321dfcbe890c4544fe14d7b235303eced2826a [file] [log] [blame]
// check-pass
// edition:2021
#![allow(incomplete_features)]
pub trait SpiDevice {
#[allow(async_fn_in_trait)]
async fn transaction<F, R>(&mut self);
}
impl SpiDevice for () {
async fn transaction<F, R>(&mut self) {}
}
fn main() {}