summary refs log tree commit diff
path: root/tests/ui/impl-trait/precise-capturing/apit.rs
blob: 64c15d6df96c88631fda62800c8e006fa9b46cda (plain)
1
2
3
4
5
6
#![feature(precise_capturing)]

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

fn main() {}