rust/tests/ui/async-await/in-trait/issue-102310.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
218 B
Rust
Raw Normal View History

2022-09-26 19:54:02 -05:00
//@ check-pass
//@ edition:2021
pub trait SpiDevice {
2023-09-26 15:20:25 -05:00
#[allow(async_fn_in_trait)]
2022-09-26 19:54:02 -05:00
async fn transaction<F, R>(&mut self);
}
impl SpiDevice for () {
async fn transaction<F, R>(&mut self) {}
}
fn main() {}