rustc/tests/ui/feature-gates/feature-gate-async-trait-bounds.rs
2025-02-17 11:14:05 +01:00

7 lines
109 B
Rust

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