2024-04-05 00:36:18 +00:00
|
|
|
#![feature(precise_capturing)]
|
|
|
|
|
2024-06-05 20:18:52 +00:00
|
|
|
fn hello(_: impl Sized + use<>) {}
|
2024-06-05 20:31:12 +00:00
|
|
|
//~^ ERROR `use<...>` precise capturing syntax not allowed in argument-position `impl Trait`
|
2024-04-05 00:36:18 +00:00
|
|
|
|
|
|
|
fn main() {}
|