mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
16 lines
248 B
Rust
16 lines
248 B
Rust
// 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() {}
|