rust_keyboard/embassy-executor/tests/ui/nonstatic_struct_elided.rs
2025-04-24 12:07:40 +02:00

9 lines
161 B
Rust

#![cfg_attr(feature = "nightly", feature(impl_trait_in_assoc_type))]
struct Foo<'a>(&'a ());
#[embassy_executor::task]
async fn task(_x: Foo) {}
fn main() {}