rust/tests/ui/async-await/unconstrained-lifetimes.rs

10 lines
235 B
Rust

//@ edition: 2021
// Make sure we don't complain about the implicit `-> impl Future` capturing an
// unconstrained anonymous lifetime.
async fn foo(_: Missing<'_>) {}
//~^ ERROR cannot find type `Missing` in this scope
fn main() {}