rust/tests/ui/feature-gates/feature-gate-async-trait-bounds.rs
2024-12-13 00:04:56 +00:00

6 lines
109 B
Rust

//@ edition: 2021
fn test(_: impl async Fn()) {}
//~^ ERROR `async` trait bounds are unstable
fn main() {}