rust/tests/ui/parser/issues/issue-102182-impl-trait-recover.rs

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

4 lines
97 B
Rust
Raw Normal View History

fn foo<T: impl Trait>() {}
//~^ ERROR expected trait bound, found `impl Trait` type
fn main() {}