blob: 49c3e9feeb4c4fab1080fcc7768dd5f29731eb6c [file] [log] [blame]
// check-pass
// edition:2021
#![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() {}