rustc/tests/ui/impl-trait/precise-capturing/apit.rs
2024-10-21 11:08:01 +02:00

5 lines
142 B
Rust

fn hello(_: impl Sized + use<>) {}
//~^ ERROR `use<...>` precise capturing syntax not allowed in argument-position `impl Trait`
fn main() {}