rust/tests/ui/async-await/in-trait/auxiliary/bad-region.rs

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

8 lines
108 B
Rust
Raw Normal View History

//@ edition:2021
#[allow(async_fn_in_trait)]
pub trait BleRadio<'a> {
async fn transmit(&mut self);
}