blob: 848d781492d0519fe7e9a06be6f57459edda797e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![cfg_attr(feature = "nightly", feature(impl_trait_in_assoc_type))]
struct Foo<'a>(&'a ());
#[embassy_executor::task]
async fn task()
where
(): Sized,
{
}
fn main() {}
|