embassy/embassy-executor/tests/ui/impl_trait_nested.rs

9 lines
176 B
Rust
Raw Normal View History

2024-10-20 21:48:58 +00:00
#![cfg_attr(feature = "nightly", feature(impl_trait_in_assoc_type))]
struct Foo<T>(T);
#[embassy_executor::task]
async fn foo(_x: Foo<impl Sized + 'static>) {}
fn main() {}