led_client/embassy/embassy-executor/tests/ui/nonstatic_struct_elided.rs
2024-12-21 00:48:45 -05: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() {}