1
Fork 0
rust/tests/ui/impl-trait/precise-capturing/apit.rs
2024-06-17 22:35:25 -04:00

7 lines
230 B
Rust

#![feature(precise_capturing)]
//~^ WARN the feature `precise_capturing` is incomplete
fn hello(_: impl Sized + use<>) {}
//~^ ERROR `use<...>` precise capturing syntax not allowed on argument-position `impl Trait`
fn main() {}