rust/tests/ui/impl-trait/precise-capturing/apit.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
142 B
Rust
Raw Normal View History

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() {}