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

7 lines
174 B
Rust
Raw Normal View History

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