rust/tests/ui/parser/recover/turbofish-arg-with-stray-colon.rs

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

7 lines
146 B
Rust
Raw Normal View History

fn foo() {
let x = Tr<A, A:>;
//~^ ERROR expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `,`
}
fn main() {}